From ba1a77f00b7938317a57c70fe4ec0fcf13eccb21 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 20:49:05 -0500 Subject: [PATCH] Homepage icons: white with lift/shadow hover effect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed colored icons per user preference. Now using clean white icons with subtle drop shadow that lifts and deepens on hover for a "pop" visual cue without glow. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontends/web/templates/index.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/frontends/web/templates/index.html b/frontends/web/templates/index.html index 6a07f1f..1e85f65 100644 --- a/frontends/web/templates/index.html +++ b/frontends/web/templates/index.html @@ -9,32 +9,32 @@ flex-direction: column; align-items: center; padding: 1rem 1.5rem; - color: rgba(255, 255, 255, 0.85); text-decoration: none; - transition: all 0.2s ease; + transition: all 0.15s ease; } .home-icon i { - font-size: 3rem; + font-size: 3.5rem; + color: #fff; margin-bottom: 0.5rem; - filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); - transition: all 0.2s ease; + filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4)); + transition: all 0.15s ease; } .home-icon span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; + color: rgba(255, 255, 255, 0.5); opacity: 0; - transform: translateY(-5px); - transition: all 0.2s ease; + transform: translateY(-8px); + transition: all 0.15s ease; } .home-icon:hover i { - transform: scale(1.2); - filter: drop-shadow(0 0 12px currentColor); + transform: translateY(-4px); + filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5)); } .home-icon:hover span { opacity: 1; transform: translateY(0); - color: var(--header-gold); } @@ -54,9 +54,9 @@