Remove label animation, keep static gold styling

This commit is contained in:
Aaron D. Lee
2026-01-07 19:58:52 -05:00
parent c1c850c593
commit 9cbb4600f8

View File

@@ -117,33 +117,17 @@
} }
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
Form Labels - Shimmering Gold Form Labels - Gold
---------------------------------------------------------------------------- */ ---------------------------------------------------------------------------- */
.card .form-label { .card .form-label {
color: #ffe699; color: #ffe699;
font-weight: 400; font-weight: 400;
animation: gold-shimmer 1.5s ease-in-out infinite; text-shadow:
} -0.3px -0.3px 0 #b8860b,
0.3px -0.3px 0 #b8860b,
@keyframes gold-shimmer { -0.3px 0.3px 0 #b8860b,
0%, 100% { 0.3px 0.3px 0 #b8860b,
color: #ffe699; 1px 2px 2px rgba(0, 0, 0, 0.4);
text-shadow:
-0.3px -0.3px 0 #b8860b,
0.3px -0.3px 0 #b8860b,
-0.3px 0.3px 0 #b8860b,
0.3px 0.3px 0 #b8860b,
1px 2px 2px rgba(0, 0, 0, 0.4);
}
50% {
color: #fff2c4;
text-shadow:
-0.3px -0.3px 0 #cc9a0c,
0.3px -0.3px 0 #cc9a0c,
-0.3px 0.3px 0 #cc9a0c,
0.3px 0.3px 0 #cc9a0c,
1px 2px 3px rgba(0, 0, 0, 0.6);
}
} }