From 0e364cc44690a05707f4d99dc3b97a54ae963da9 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Fri, 1 Aug 2025 00:14:09 +0200 Subject: [PATCH] style: fix landing page link colors for Chromium browsers For all those devs shitting on Firefox for no reason: Your daddy Google doesn't get shit right either. --- html_resources/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/html_resources/style.css b/html_resources/style.css index 9e09351..bff7c01 100644 --- a/html_resources/style.css +++ b/html_resources/style.css @@ -192,9 +192,20 @@ span.quote.non-speech * { color: #303030; } +/* +Normally, the following should be enough: span.chapter { color: inherit; } +However, Chromium apparently doesn't apply the a:visted color to children of . +*/ + +span.chapter { + color: #1515A0; +} +a:visited>span.chapter { + color: #185113; +} span.chapter::before { content: "\25b9"; font-size: 0.75em;