Some checks failed
My Build All / build_windows (push) Has been cancelled
My Build All / build_linux_portable (push) Has been cancelled
My Build All / build_linux_appimage (push) Has been cancelled
My Build All / build_macos (push) Has been cancelled
My Build All / Publish release assets (push) Has been cancelled
Shellcheck / Shellcheck (push) Has been cancelled
36 lines
No EOL
436 B
CSS
36 lines
No EOL
436 B
CSS
@keyframes rotate {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
body
|
|
{
|
|
display:flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#LoadBlock
|
|
{
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#LoadingSvg
|
|
{
|
|
animation: rotate 1.2s infinite linear;
|
|
margin-right: 8px;
|
|
height: 120%;
|
|
}
|
|
|
|
#LoadTip
|
|
{
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
color: #009688;
|
|
} |