24 lines
376 B
CSS
24 lines
376 B
CSS
/* Spinner 1 */
|
|
@keyframes spinner {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.spinner-1:before {
|
|
content: "";
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 56%;
|
|
left: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-top: -20px;
|
|
margin-left: -20px;
|
|
border-radius: 50%;
|
|
border: 4px solid #EAEAEA;
|
|
border-top-color: #fcb416;
|
|
animation: spinner 0.7s linear infinite;
|
|
}
|
|
|
|
|