From a91d127ed7f8d9865d2d509278d16cf988de5389 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 19:53:48 -0500 Subject: [PATCH] Add subtle pulsing drop shadow to gold labels --- frontends/web/static/style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index eb8f216..d665d8e 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -125,8 +125,14 @@ } @keyframes gold-shimmer { - 0%, 100% { color: #ffe699; } - 50% { color: #fff2c4; } + 0%, 100% { + color: #ffe699; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + } + 50% { + color: #fff2c4; + text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); + } }