This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
gluon-firmware/package/gluon-status-page/src/css/animation.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);
}
}