diff options
| author | stonedDiscord <stoned@derpymail.org> | 2020-04-19 15:43:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-19 15:43:44 +0200 |
| commit | 729f4144d7b3a489d8c17d3ec2d7c8f32411f696 (patch) | |
| tree | 04a61f8c3289b23ed55ba0e23bd47e8a127dbe17 /webAO/styles/chatbox/chatdd.css | |
| parent | 0dc565de5fbc94dfe1745a44c879ee6a9f801049 (diff) | |
| parent | 182ee7354419bf6ce472817d1124932e82b43f98 (diff) | |
Merge pull request #58 from AttorneyOnline/chatboxstyle
Chatboxstyle
Diffstat (limited to 'webAO/styles/chatbox/chatdd.css')
| -rw-r--r-- | webAO/styles/chatbox/chatdd.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/webAO/styles/chatbox/chatdd.css b/webAO/styles/chatbox/chatdd.css new file mode 100644 index 0000000..b97fa2c --- /dev/null +++ b/webAO/styles/chatbox/chatdd.css @@ -0,0 +1,48 @@ +#client_chatcontainer { + position: absolute; + bottom: 0; + height: 27%; + width: 100%; + font-family: sans-serif; + background-image: url("../images/chatbox.svg"); + background-size: cover; + background-repeat: no-repeat; +} + +#client_name { + display: block; + top: 4%; + padding: 0 10px; + height: 22%; + position: absolute; +} + +#client_chat { + font-size: 1em; + display: block; + width: 100%; + margin: auto; + height: 90%; + top: 20%; + position: absolute; + word-break: keep-all; + word-wrap: break-word; + overflow-wrap: break-word; + text-align: left; + overflow: hidden; + scroll-behavior: smooth; +} + +#client_inner_name { + margin: 4px; + padding: 5px 3%; +} + +#client_chatwaiting { + display: block; + right: 1em; + bottom: 0.6em; + width: 1em; + position: absolute; + animation: idling 1s linear infinite; +}
\ No newline at end of file |
