diff options
Diffstat (limited to 'client-web/public/assets/style/chat.css')
-rw-r--r-- | client-web/public/assets/style/chat.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/client-web/public/assets/style/chat.css b/client-web/public/assets/style/chat.css new file mode 100644 index 0000000..12741e6 --- /dev/null +++ b/client-web/public/assets/style/chat.css @@ -0,0 +1,29 @@ +/* TODO all of these rules are totally stupid */ +.chat { + overflow: scroll; + + background-color: var(--bg); + padding: 1em; + border-radius: 1em; +} + +.chat .message { + margin: 0.2em; +} +.chat .author { + font-weight: bold; +} +.chat .content { + color: white; +} +.chat .messages { + height: calc(100% - 5em); + width: 100%; + overflow: scroll; +} +.chat .controls { + padding: 1em; +} +.chat input { + width: 100%; +} |