From 7aa5ad5dff472d5be574a462e54be136d198d92d Mon Sep 17 00:00:00 2001 From: krateng Date: Tue, 24 Oct 2023 23:13:03 +0200 Subject: [PATCH] Thug life --- maloja/web/static/css/maloja.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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); + } }