From fc5ae9031c5114cd4f18611c2e979db5c37b8b84 Mon Sep 17 00:00:00 2001 From: Pierre de Lacroix Date: Sun, 25 Jan 2026 13:02:56 +0100 Subject: [PATCH] fix invisible links (closes #26) --- css/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/base.css b/css/base.css index 7cc787e..8683964 100644 --- a/css/base.css +++ b/css/base.css @@ -33,6 +33,10 @@ img { } a { + color: inherit; +} + +nav a, footer a { color: black; text-decoration: none; }