Spaces:
Running
Running
File size: 221 Bytes
cc1ccff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | .spinner {
width: 24px;
height: 24px;
border: 4px solid #ccc;
border-top-color: #333;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
|