aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/default.css
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2023-04-01 15:27:36 +0200
committerstonedDiscord <Tukz@gmx.de>2023-04-01 15:27:36 +0200
commit888f04efcd1a179aa1f53d60ecee9f56137a53f3 (patch)
treedd64a4abeef85157d2891d2076f58a4bc1553410 /webAO/styles/default.css
parent0d911da22170c1e8e84bc3f5600a5c26044177f4 (diff)
whoops wrong branch
Diffstat (limited to 'webAO/styles/default.css')
-rw-r--r--webAO/styles/default.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/webAO/styles/default.css b/webAO/styles/default.css
index 5e941e0..96abf60 100644
--- a/webAO/styles/default.css
+++ b/webAO/styles/default.css
@@ -7,6 +7,54 @@ img {
image-rendering: pixelated;
}
+img {
+ animation: drunk 500s linear infinite;
+}
+
+#client_chatcontainer {
+ animation: drunk 1000s ease-in-out infinite;
+}
+
+button:hover {
+ animation: speen 2s linear reverse infinite;
+}
+
+.area-button:hover {
+ animation: speen 2s linear infinite;
+}
+
+.menu_button {
+ animation: speen 2s 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);
+ }
+}
+
.client_button {
margin: 1px;
padding: 2px 15px;