24 lines
408 B
CSS
24 lines
408 B
CSS
@-webkit-keyframes loadingCircle {
|
|
to {
|
|
transform:rotate(1turn)
|
|
}
|
|
}
|
|
@keyframes loadingCircle {
|
|
to {
|
|
transform:rotate(1turn)
|
|
}
|
|
}
|
|
.load-box {
|
|
position:fixed;
|
|
top:calc(50% - 11px);
|
|
left:calc(50% - 111px);
|
|
display:flex;
|
|
align-items:center;
|
|
}
|
|
.load-icon {
|
|
animation:loadingCircle 1s linear infinite;
|
|
}
|
|
.load-txt {
|
|
font-size:16px;
|
|
margin-left:10px;
|
|
} |