From 64aa54443e9b12770fadf020ee1189f2f49c5c91 Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Wed, 1 Apr 2026 00:53:26 +0200 Subject: Colours for join/leave events --- pages/style.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pages') 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; } -- cgit v1.3