diff options
author | anyunderstanding | 2024-06-06 15:12:19 +0200 |
---|---|---|
committer | anyunderstanding | 2024-06-06 15:12:19 +0200 |
commit | 92bfcd2c3fdd3a2e60a884ebd7f14b67566d30e8 (patch) | |
tree | 23234302f8eea2babd5c52ec2faac602670dcfa9 /cooler/style.css | |
parent | 52688546dd5a8031563b3ea71d9a3d73ec044705 (diff) |
the greates version ever
Diffstat (limited to 'cooler/style.css')
-rw-r--r-- | cooler/style.css | 26 |
1 files changed, 26 insertions, 0 deletions
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 |