diff options
Diffstat (limited to 'www/styles')
-rw-r--r-- | www/styles/main-style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/www/styles/main-style.css b/www/styles/main-style.css index 8a4793f..5b8c5db 100644 --- a/www/styles/main-style.css +++ b/www/styles/main-style.css @@ -97,3 +97,9 @@ body { .text-center { text-align: center; } + +.spin { + animation: spin 2s linear infinite; +} + +@keyframes spin { 100% { transform:rotate(360deg); } } |