From 520db89f4817601c979c985ca083a0bc16eff288 Mon Sep 17 00:00:00 2001 From: kor Date: Tue, 30 Jul 2024 09:28:17 +0200 Subject: [PATCH] Make logo rotate --- src/custom.css | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/src/custom.css b/src/custom.css index 50fe5be..17dadc0 100644 --- a/src/custom.css +++ b/src/custom.css @@ -239,7 +239,7 @@ table th { .search-heading { display: inline-block; - background-image: url("logo-keri-symbol.png"); + /* background-image: url("logo-keri-symbol.png"); */ background-position: left top; background-repeat: no-repeat; background-color: transparent; @@ -982,4 +982,29 @@ footer { /* visibility: visible; */ opacity: 1 !important; transition: all 0.3s ease-in-out; -} \ No newline at end of file +} + + +/* + Rotating Image +*/ + +.hero__image { + max-width: 2em !important; + margin-right: 0.5em; + animation: rotation 12s infinite linear; +} + +@keyframes rotation { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(359deg); + } +} + +/* + End Rotating Image +*/ \ No newline at end of file