From 92bfcd2c3fdd3a2e60a884ebd7f14b67566d30e8 Mon Sep 17 00:00:00 2001 From: anyunderstanding Date: Thu, 6 Jun 2024 15:12:19 +0200 Subject: the greates version ever --- cooler/style.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'cooler/style.css') diff --git a/cooler/style.css b/cooler/style.css index 1f2fc5f..c33162a 100644 --- a/cooler/style.css +++ b/cooler/style.css @@ -9,6 +9,7 @@ html, body { font-size: 69px; font-family: 'Courier New', Courier, monospace; font-weight: bold; + overflow-x: hidden; } section{ @@ -150,4 +151,29 @@ div { transform: translate(-50%, -40%); width: 100%; height: 100vh; +} + +ul li { + animation: shake 0.1s ease infinite; +} + +@keyframes rotate { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + + } +} +@keyframes shake { + 0% { + transform: rotate(0deg); + } + 50% { + transform: rotate(5deg); + } + 100% { + transform: rotate(-5deg); + } } \ No newline at end of file -- cgit v1.2.3