13 lines
186 B
CSS
13 lines
186 B
CSS
/*
|
|
Animation example, for spinners
|
|
*/
|
|
.animate-spin {
|
|
animation: spin 2s linear infinite;
|
|
display: inline-block;
|
|
}
|
|
@keyframes spin {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|