aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/client.css
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/styles/client.css')
-rw-r--r--webAO/styles/client.css50
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%);