From 2d4ac41cfa5094044cf0174a3a4167259c09cdb6 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Thu, 29 May 2025 12:12:03 +1000 Subject: [PATCH] use white for better contrast on hovered links --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 23c13c7..46734d3 100644 --- a/style.css +++ b/style.css @@ -19,12 +19,12 @@ a:visited { } a:hover { - color: #d9d9d9; + color: white; background-color: #00a2e7; } a:visited:hover { - color: #d9d9d9; + color: white; background-color: #ca1a70; }