aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-02-12 23:25:23 +0100
committersD <stoned@derpymail.org>2020-02-12 23:25:23 +0100
commit5d0414a10b1bf032a1599f6c8301c35b14fbe0d1 (patch)
treed73676d051201da6148c04f5ee8c75018f7aa90f /webAO/styles
parent2ca318654b831cace999bbc287b0b515352ab73f (diff)
correct indentation
Diffstat (limited to 'webAO/styles')
-rw-r--r--webAO/styles/classic.css61
1 files changed, 35 insertions, 26 deletions
diff --git a/webAO/styles/classic.css b/webAO/styles/classic.css
index 6760921..5dbb10c 100644
--- a/webAO/styles/classic.css
+++ b/webAO/styles/classic.css
@@ -12,20 +12,22 @@ img {
#client_name {
display: none;
- padding: 0px 6px;
+ padding: 0 6px;
height: 5%;
min-width: 3.25em;
text-justify: distribute;
letter-spacing: 1px;
- outline: 1px solid rgba(255, 255, 255, 0.5);
- border: 1px solid rgba(33, 33, 33, 0.5);
- background: rgba(56, 56, 163, 0.5);
- box-shadow: 1px 1px rgba(0, 56, 163, 0.5) inset;
+ outline: 1px solid rgb(255, 255, 255, 0.5);
+ border: rgb(33, 33, 33, 0.5) solid 1px;
+ background: rgb(56, 56, 163, 0.5);
+ box-shadow: 1px 1px rgb(0, 56, 163, 0.5) inset;
left: 1px;
top: 60.5%;
top: calc(60.5% + 1px);
- -moz-outline-radius: 3px;
border-radius: 3px;
+ -moz-outline-radius: 3px;
+ outline-radius: 3px;
+ outline-offset: -1px;
position: absolute;
z-index: 1;
}
@@ -34,16 +36,15 @@ img {
font-size: 1em;
display: none;
width: 98%;
- width: calc(100% - 2px);
+ width: calc(100% - 4px);
margin: auto;
- height: 33%;
- border: 2px solid rgba(255, 255, 255, 0.5);
- background-color: rgba(0, 0, 0, 0.5);
+ height: 31.5%;
+ border: rgb(255, 255, 255, 0.5) solid 2px;
+ background-color: rgb(0, 0, 0, 0.5);
top: 66.5%;
border-radius: 4px;
position: absolute;
word-break: keep-all;
- word-wrap: break-word;
overflow-wrap: break-word;
text-align: left;
overflow: hidden;
@@ -61,17 +62,25 @@ img {
#client_chatwaiting {
display: block;
right: -6px;
- bottom: 0.4em;
+ bottom: 0.24em;
width: 1em;
position: absolute;
animation: idling 0.4s linear infinite;
}
@keyframes idling {
- 0% {right: -4px;}
- 50% {right: -8px;}
- 100% {right: -4px;}
- }
+ 0% {
+ right: -4px;
+ }
+
+ 50% {
+ right: -8px;
+ }
+
+ 100% {
+ right: -4px;
+ }
+}
#evi_name {
background-color: #393939;
@@ -84,22 +93,22 @@ img {
}
#client_menu {
- background-color: #5a5a5a;
+ background-color: #5a5a5a;
overflow-y: auto;
height: 100%;
}
#client_menu:after {
position: absolute;
- content:"";
+ content: "";
pointer-events: none;
- background: repeating-linear-gradient(transparent, transparent 3px, rgba(255,255,255,0.2) 3px, rgba(255,255,255,0.2) 4px);
- top:0;
- left:0;
- width:100%;
- height:100%;
- opacity:0.5;
- }
+ background: repeating-linear-gradient(transparent, transparent 3px, rgb(255, 255, 255, 0.2) 3px, rgb(255, 255, 255, 0.2) 4px);
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0.5;
+}
.menu_content {
background-color: #847342;
@@ -115,5 +124,5 @@ img {
color: white;
background-color: #7b2900;
text-shadow: 0 0 4px #000;
- border: 1px solid #000;
+ border: #000 solid 1px;
} \ No newline at end of file