From fa97f53dd7cb24b664baa9398d00793ae23a56e6 Mon Sep 17 00:00:00 2001 From: jordi fita mas Date: Tue, 11 Jul 2023 13:52:04 +0200 Subject: [PATCH] Change link color to full blue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is mostly to have better contrast with the alternative row color (#EDE95E), because with Firefox’s default link color (#1B6ACB), on Linux at least, the contrast ratio is 4,5:1. Closes #62. --- web/static/numerus.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/static/numerus.css b/web/static/numerus.css index b1264f4..b13e4d9 100644 --- a/web/static/numerus.css +++ b/web/static/numerus.css @@ -194,6 +194,10 @@ p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; } +:any-link { + color: #0000ff; +} + input[type="radio"] { accent-color: var(--numerus--color--black); }