diff options
| author | sD <stoned@derpymail.org> | 2020-02-13 09:22:05 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-02-13 09:22:05 +0100 |
| commit | 02df4d38a588b1f3447a6264f04746489dc718e5 (patch) | |
| tree | c6447263644dca590be581a55f1ae3401845c900 /webAO/styles | |
| parent | 9fd13d1cc617fdc55129bbedcf2f7dc7a3e8ea3d (diff) | |
move chatwaiting to the right, remove border remains
Diffstat (limited to 'webAO/styles')
| -rw-r--r-- | webAO/styles/soj.css | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/webAO/styles/soj.css b/webAO/styles/soj.css index 41c1f66..8cc8197 100644 --- a/webAO/styles/soj.css +++ b/webAO/styles/soj.css @@ -14,10 +14,9 @@ body { #client_name { display: none; - top: 5%; - padding: 0px 10px; - height: 20%; - border-radius: 3px; + top: 4%; + padding: 0 10px; + height: 22%; position: absolute; } @@ -28,7 +27,6 @@ body { margin: auto; height: 90%; top: 20%; - border-radius: 4px; position: absolute; word-break: keep-all; word-wrap: break-word; @@ -40,10 +38,33 @@ body { #client_chat p { margin: 4px; - padding: 5px 10px; + padding: 5px 3%; color: white; } +#client_chatwaiting { + display: block; + right: 1em; + bottom: 0.6em; + width: 1em; + position: absolute; + animation: idling 1s linear infinite; +} + +@keyframes idling { + 0% { + right: 0.4em; + } + + 50% { + right: 0.8em; + } + + 100% { + right: 0.4em; + } +} + #evi_name { background-color: #242e25; } |
