File size: 127 Bytes
a3689a2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
@keyframes spin {
    100% {
        transform:rotate(360deg);
    }
}

.spin {
    animation: spin 1.5s steps(30) infinite;
}