Add subtle pulsing drop shadow to gold labels

This commit is contained in:
Aaron D. Lee
2026-01-07 19:53:48 -05:00
parent a0781b1cf7
commit a91d127ed7

View File

@@ -125,8 +125,14 @@
} }
@keyframes gold-shimmer { @keyframes gold-shimmer {
0%, 100% { color: #ffe699; } 0%, 100% {
50% { color: #fff2c4; } 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);
}
} }