Vote fixing

This commit is contained in:
Theo Browne
2026-02-22 17:33:52 -08:00
parent 845065ac8f
commit e7d1cb3bf7
3 changed files with 44 additions and 40 deletions

View File

@@ -335,6 +335,24 @@ body {
background: rgba(255, 255, 255, 0.06);
}
/* ── My Vote Highlight ──────────────────────────────────────── */
.contestant--my-vote {
background: rgba(255, 255, 255, 0.03);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.my-vote-tag {
font-family: var(--mono);
font-size: 10px;
font-weight: 700;
letter-spacing: 1px;
padding: 3px 8px;
border: 1px solid var(--text-muted);
color: var(--text-dim);
border-radius: 3px;
}
/* ── Viewer Votes ────────────────────────────────────────────── */
.viewer-vote-bar {
@@ -358,25 +376,6 @@ body {
font-size: 14px;
}
/* ── Vote CTA ────────────────────────────────────────────────── */
.vote-cta {
text-align: center;
font-family: var(--mono);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
color: var(--text-dim);
padding: 10px 0;
margin-bottom: 8px;
animation: vote-cta-pulse 2s ease-in-out infinite;
}
@keyframes vote-cta-pulse {
0%, 100% { opacity: 0.7; }
50% { opacity: 1; }
}
.vote-countdown {
color: var(--text);