From 21d6e4e451a2280c93a5910ce94dc2502281c75d Mon Sep 17 00:00:00 2001 From: David Kertzscher Date: Wed, 20 May 2026 12:57:36 +0000 Subject: [PATCH] Dark Mode Nav: transparenter Hintergrund, dunkelblauer Text --- css/style.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/css/style.css b/css/style.css index 1c77677..95d4304 100644 --- a/css/style.css +++ b/css/style.css @@ -143,23 +143,23 @@ body.dark header h2 { } /* Dark Mode - Navigation */ -html.dark , +html.dark nav, body.dark nav { - background-color: rgba(15, 23, 42, 0.95); - border-color: #334155; + background-color: transparent; + border-color: transparent; } -html.dark , +html.dark nav a, body.dark nav a { - color: #93c5fd; + color: #1e3a5f; transition: color 0.2s ease; } -html.dark , +html.dark nav a:hover, body.dark nav a:hover, -html.dark , +html.dark nav a.active, body.dark nav a.active { - color: #60a5fa; + color: #1e40af; } /* Dark Mode - Main Content */