Files
Elecciones-2025/Elecciones-Web/frontend/src/components/TickerWidget.css

87 lines
1.8 KiB
CSS
Raw Normal View History

/* src/components/TickerWidget.css */
.ticker-container {
/* Se cambia a un fondo claro con borde y sombra sutil */
background-color: #ffffff;
border: 1px solid #e0e0e0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
padding: 15px 20px;
border-radius: 8px;
max-width: 800px;
margin: 20px auto;
font-family: "Public Sans", system-ui, Avenir, Helvetica, Arial, sans-serif;
color: #333333; /* Color de texto por defecto */
}
.ticker-container.loading, .ticker-container.error {
text-align: center;
padding: 30px;
font-style: italic;
color: #757575; /* Color de texto atenuado */
}
.ticker-header {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #e0e0e0; /* Borde más claro */
padding-bottom: 10px;
margin-bottom: 15px;
}
.ticker-header h3 {
margin: 0;
color: #212529; /* Color de título oscuro */
font-size: 1.2em;
font-weight: 700;
}
.ticker-stats {
display: flex;
gap: 20px;
font-size: 0.9em;
color: #555;
}
.ticker-stats strong {
color: #0073e6; /* Se usa el azul primario para destacar */
font-size: 1.1em;
}
.ticker-results {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.ticker-party .party-info {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
font-size: 0.9em;
}
.ticker-party .party-name {
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 10px;
}
.ticker-party .party-percent {
font-weight: 700;
}
.party-bar-background {
background-color: #e9ecef; /* Fondo de barra claro */
border-radius: 4px;
height: 10px;
overflow: hidden;
}
.party-bar-foreground {
height: 100%;
border-radius: 4px;
transition: width 0.5s ease-in-out;
/* El color de fondo se sigue aplicando desde el componente, esto es correcto */
}