File size: 517 Bytes
8eb2cb0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
.main{
width: 90vw;
margin: 0 auto;
text-align: center;
}
.loading_circle {
width: 50px;
height: 50px;
margin: 10px auto;
border: 10px solid #e3e3e3;
border-bottom: 10px solid #000000;
border-radius: 50%;
animation: load 1.5s linear infinite;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
@keyframes load {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} |