From 3e5de98f606bf3307acc2b33007f2659b4889b92 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 19:52:16 -0500 Subject: [PATCH] Gold shimmer: just color pulse, no outer glow --- frontends/web/static/style.css | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index 736d81c..ec9fde6 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -121,19 +121,12 @@ ---------------------------------------------------------------------------- */ .card .form-label { color: #ffe699; - text-shadow: 0 0 8px rgba(255, 230, 150, 0.4); animation: gold-shimmer 2.5s ease-in-out infinite; } @keyframes gold-shimmer { - 0%, 100% { - color: #ffe699; - text-shadow: 0 0 8px rgba(255, 230, 150, 0.3); - } - 50% { - color: #fffbe8; - text-shadow: 0 0 16px rgba(255, 240, 180, 0.7), 0 0 4px rgba(255, 255, 255, 0.5); - } + 0%, 100% { color: #ffe699; } + 50% { color: #fffef5; } }