From a4a686a6f10bc924d3de7fd902a76b01a894a9c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20M=C3=A4lman?= Date: Wed, 2 Sep 2026 21:49:50 +0200 Subject: [PATCH] Refactor error and link hover background colors for better visibility --- src/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/style.css b/src/style.css index 47e15dc..ee9b14f 100644 --- a/src/style.css +++ b/src/style.css @@ -332,7 +332,8 @@ main { } .error { - background-color: rgba(220, 38, 127, 0.1); + /* opaque equivalent of rgba(220, 38, 127, 0.1) over the #0B0E13 page background */ + background-color: #20101E; border: 2px solid rgba(220, 38, 127, 0.3); color: #ff6b9d; padding: 30px; @@ -393,7 +394,8 @@ footer p { .linkedin-link:hover { color: #3BA3E5; transform: translateY(-2px); - background-color: rgba(59, 163, 229, 0.1); + /* opaque equivalent of rgba(59, 163, 229, 0.1) over the #0B0E13 page background */ + background-color: #101D28; } .github-icon,