diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-03-31 22:08:38 +0200 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2023-03-31 22:08:38 +0200 |
| commit | 0d911da22170c1e8e84bc3f5600a5c26044177f4 (patch) | |
| tree | 494f2ba04409c6209a3e34c801915f543cc1182d /webAO | |
| parent | 05e40ad75bb3d2d15b069db5b21ab9d55c6ad9f9 (diff) | |
why were all the lines so wobbly
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/styles/client.css | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css index ced8339..4567380 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -5,6 +5,8 @@ width: 20px; } +div * {font-family: "Comic Sans MS" , Sans-Serif !important; } + @keyframes error_blink { 0% { color: #fff; @@ -19,6 +21,54 @@ } } +img { + animation: drunk 1000s linear infinite; +} + +#client_chatcontainer { + animation: drunk 100s ease-in-out infinite; +} + +button:hover { + animation: speen 0.5s linear reverse infinite; +} + +.area-button:hover { + animation: speen 0.5s linear infinite; +} + +.menu_button { + animation: speen 0.5s linear infinite; +} + +@keyframes drunk { + 0% { + transform: rotate(0); + } + + 20% { + transform: rotate(20deg); + } + + 80% { + transform: rotate(-20deg); + } + + 100% { + transform: rotate(0deg); + } +} + +@keyframes speen { + 0% { + transform: rotate(0); + } + + 100% { + transform: rotate(360deg); + } +} + .text_rainbow { background-color: #fff; background-image: repeating-linear-gradient(to right, red 0% 20%, orange 20% 40%, yellow 40% 60%, green 60% 80%, blue 80% 100%); |
