Files
Laucha1312 fdd0fef3f0 2354
2026-06-04 15:19:42 -03:00

24 lines
691 B
CSS

/* OnAPB — Eventos
La vista usa kinetic-card + Bootstrap.
Este archivo conserva solo estilos de soporte. */
/* Barra de fechas horizontal — scroll sin scrollbar visible */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
/* Pulse para badge "EN VIVO" */
.pulse { animation: pulse-badge 2s ease-in-out infinite; }
@keyframes pulse-badge {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
/* Score display */
.match-score-display {
font-family: var(--font-display, 'Antonio', sans-serif);
font-size: 2rem;
font-weight: 700;
letter-spacing: 0.05em;
color: var(--on-surface);
}