Gold shimmer: just color pulse, no outer glow

This commit is contained in:
Aaron D. Lee
2026-01-07 19:52:16 -05:00
parent c8956b9e43
commit 3e5de98f60

View File

@@ -121,19 +121,12 @@
---------------------------------------------------------------------------- */ ---------------------------------------------------------------------------- */
.card .form-label { .card .form-label {
color: #ffe699; color: #ffe699;
text-shadow: 0 0 8px rgba(255, 230, 150, 0.4);
animation: gold-shimmer 2.5s ease-in-out infinite; animation: gold-shimmer 2.5s ease-in-out infinite;
} }
@keyframes gold-shimmer { @keyframes gold-shimmer {
0%, 100% { 0%, 100% { color: #ffe699; }
color: #ffe699; 50% { color: #fffef5; }
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);
}
} }