aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/classic.css
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2023-12-19 02:12:20 +0100
committerDavid Skoland <davidskoland@gmail.com>2023-12-19 02:13:55 +0100
commit4f67d8dd1d697b704af6fe1a2b9b85c7e893c946 (patch)
treec06aedbaec9b580005794d5f42a6e1f8fca685c4 /webAO/styles/classic.css
parent43074242c8278af037fb04f7a8dee7f7521272ce (diff)
Use client_button instead of objection_button
Currently, we use objection_button class for the shouts, but the toggleShout function actually changes it to client_button instead. This makes it change style (height) whenever it is pressed. We can fix this by just using client_button. That makes it look more like the rest of the buttons as well. Since we don't use objection_button anymore, remove it from the styles.
Diffstat (limited to 'webAO/styles/classic.css')
-rw-r--r--webAO/styles/classic.css42
1 files changed, 17 insertions, 25 deletions
diff --git a/webAO/styles/classic.css b/webAO/styles/classic.css
index b459cf7..241f8a1 100644
--- a/webAO/styles/classic.css
+++ b/webAO/styles/classic.css
@@ -1,13 +1,13 @@
body {
- font-family: "Igiari Cyrillic", "Ace Attorney", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi" , sans-serif;
+ font-family: "Igiari Cyrillic", "Ace Attorney", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi", sans-serif;
}
/* Webfont CSS setup for Igiari by Caveras */
@font-face {
- font-family:'Igiari Cyrillic';
- src: url('./igiari/igiari-cyrillic.ttf');
- font-weight:normal;
- font-style:normal;
+ font-family: 'Igiari Cyrillic';
+ src: url('./igiari/igiari-cyrillic.ttf');
+ font-weight: normal;
+ font-style: normal;
}
img {
@@ -19,7 +19,7 @@ hr {
height: 6px;
width: 100%;
background-color: #c6c6c6;
- background: repeating-linear-gradient(to right,#f7f7f7, #f7f7f7 1px, #8c8c8c 1px, #8c8c8c 2px, #c6c6c6 2px, #c6c6c6 16px);
+ background: repeating-linear-gradient(to right, #f7f7f7, #f7f7f7 1px, #8c8c8c 1px, #8c8c8c 2px, #c6c6c6 2px, #c6c6c6 16px);
margin: 0;
}
@@ -55,8 +55,13 @@ hr {
}
@keyframes shutter-effect {
- 0% { background-position: 0 0; }
- 100% { background-position: 0 4px; }
+ 0% {
+ background-position: 0 0;
+ }
+
+ 100% {
+ background-position: 0 4px;
+ }
}
#client_menu:after {
@@ -114,19 +119,6 @@ hr {
border-radius: 4px;
}
-.objection_button {
- min-width: 6em;
- margin: 1px;
- padding: 6px 2px;
- clip-path: polygon(75% 0, 100% 50%, 100% 100%, 0 100%, 0 50%, 25% 0);
- cursor: pointer;
- text-align: center;
- color: white;
- background-color: #7b2900;
- text-shadow: 0 0 4px #000;
- border: #000 solid 1px;
-}
-
#button_2 {
text-transform: capitalize;
}
@@ -194,13 +186,13 @@ hr {
}
#client_ooclog {
- background-color: #8b8b8b;
+ background-color: #8b8b8b;
color: #000;
}
#client_inputbox {
- background-color: #6d6d6d;
- color: #000;
+ background-color: #6d6d6d;
+ color: #000;
}
#client_iccontrols {
@@ -210,4 +202,4 @@ hr {
#client_oocinput {
background-color: #575757;
color: #000;
-} \ No newline at end of file
+}