summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-10-26 19:05:59 +0500
committerilotterytea <iltsu@alright.party>2025-10-26 19:05:59 +0500
commitc3465bddcbb1da935160b0f0612e6616ab927279 (patch)
tree15e4efe33647e57aebba8fcd050f1d90aecfb469 /style.css
parent7659da266be73503c578a4ffe8dda9bc3b63fba3 (diff)
feat: display joined/parted chatters
Diffstat (limited to 'style.css')
-rw-r--r--style.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/style.css b/style.css
index 44e5182..9776355 100644
--- a/style.css
+++ b/style.css
@@ -18,11 +18,15 @@
.message {
background: var(--message-background);
text-shadow: 1px 1px 2px var(--message-shadow-color);
- color: var(--message-color);
padding: 4px;
border-bottom: 1px solid var(--message-shadow-color);
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
+ color: gray;
+}
+
+.message:has(.author) {
+ color: var(--message-color);
}
.message .author {