From 18759c563778a516a08638abe58f7005efadf239 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Sun, 9 Nov 2025 02:55:10 +0000 Subject: [PATCH] style: improve GitHub link visibility with whitesmoke default and clearer blue hover - Change default color from accent-blue to whitesmoke for better visibility - Add clearer light blue hover color (#66B3FF instead of dark blue) - Add smooth color transition on hover - Remove inline color style, use CSS class instead --- static/css/main.css | 10 ++++++++++ templates/index.html | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/static/css/main.css b/static/css/main.css index 164d439..3aea972 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1107,6 +1107,16 @@ footer { font-size: 0.85rem; } +/* GitHub repository link styling */ +.github-repo-link { + color: whitesmoke !important; + transition: color 0.2s ease-in-out; +} + +.github-repo-link:hover { + color: #66B3FF !important; +} + /* CV Version Toggle Animations */ @keyframes fadeInGrow { diff --git a/templates/index.html b/templates/index.html index 52e822e..4238b56 100644 --- a/templates/index.html +++ b/templates/index.html @@ -241,7 +241,7 @@