diff options
Diffstat (limited to 'src/main.css')
-rw-r--r-- | src/main.css | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/src/main.css b/src/main.css index b244020..fc7d02b 100644 --- a/src/main.css +++ b/src/main.css @@ -1,5 +1,5 @@ .UI { - background-color: blue; + background-color: lightblue; } #chatwindow { display: flex; @@ -105,7 +105,7 @@ body { } .username { margin-left: 0.3em; - margin-right: 0.4em; + margin-right: 0.7em; } .deleted { @@ -117,4 +117,25 @@ body { text-align: center; background-color: red; color: white; +} + +.reply { + font-size: 14px; + margin-left: 2em; + color: #666; + display: flex; +} +.reply:hover { + cursor: pointer; +} +.reply_icon { + font-size: 0.7em; + margin: auto; +} + +.highlight { + background-color: lightcoral; +} +.reply_highlight { + background-color: lightblue; }
\ No newline at end of file |