summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2026-04-01 00:53:26 +0200
committerTom Smeding <tom@tomsmeding.com>2026-04-01 00:53:26 +0200
commit64aa54443e9b12770fadf020ee1189f2f49c5c91 (patch)
treec4de9cf2f06e0220fc3fc19f782a9c3527e11fb9 /pages
parente24ea510232b0831a81ba0d4a2623976f79a3d9f (diff)
Colours for join/leave events
Diffstat (limited to 'pages')
-rw-r--r--pages/style.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/pages/style.css b/pages/style.css
index 551bb21..e11ea26 100644
--- a/pages/style.css
+++ b/pages/style.css
@@ -5,6 +5,8 @@ body {
--footer-text-color: #333;
--footer-bg-color: #eee;
--meta-color: #777;
+ --join-color: #66c;
+ --leave-color: #b66;
--nickwrap-color: #999;
--link-color: #33f;
}
@@ -17,6 +19,8 @@ body {
--footer-bg-color: #333;
--footer-text-color: #eee;
--meta-color: #676767;
+ --join-color: #7777c7;
+ --leave-color: #b05757;
--nickwrap-color: var(--meta-color);
--link-color: #abf;
}
@@ -123,6 +127,8 @@ table#events td:nth-child(-n + 2) {
span.nickwrap { color: var(--nickwrap-color); }
table#events tr.ev-meta > td:nth-child(n + 2) { color: var(--meta-color); }
+table#events tr.ev-join > td:nth-child(n + 2) { color: var(--join-color); }
+table#events tr.ev-leave > td:nth-child(n + 2) { color: var(--leave-color); }
table#events tr.ev-act > td:nth-child(n + 2) { font-style: italic; }
table#events tr.ev-notice > td:nth-child(n + 2) { font-weight: bold; }
table#events tr.ev-parseerror > td:nth-child(n + 2) { color: red; }