diff --git a/maloja/web/static/css/maloja.css b/maloja/web/static/css/maloja.css index 07c99d2..9bbba35 100644 --- a/maloja/web/static/css/maloja.css +++ b/maloja/web/static/css/maloja.css @@ -266,7 +266,19 @@ div#footer { } #notch img:hover { - transform: scale(1.1); + /*transform: scale(1.1);*/ + animation-name: spin; + animation-duration: 4000ms; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +@keyframes spin { + from { + transform: rotate(0deg); + } to { + transform: rotate(360deg); + } }