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

145 lines
2.7 KiB
CSS
Raw Normal View History

/* src/components/TickerWidget.css */
2025-09-01 14:04:40 -03:00
.ticker-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 1.5rem;
width: 100%;
max-width: 1280px;
margin: 20px auto;
}
2025-09-01 14:04:40 -03:00
.ticker-card {
background-color: #ffffff;
border: 1px solid #e0e0e0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
padding: 15px 20px;
border-radius: 8px;
display: flex;
flex-direction: column;
}
.ticker-header {
display: flex;
justify-content: space-between;
align-items: center;
2025-09-02 20:34:49 -03:00
border-bottom: 1px solid #e0e0e0;
padding-bottom: 10px;
margin-bottom: 15px;
}
.ticker-header h3 {
margin: 0;
2025-09-02 20:34:49 -03:00
color: #212529;
font-size: 1.2em;
font-weight: 700;
2025-09-02 20:34:49 -03:00
padding-right: 15px; /* Espacio para que no se pegue al dropdown en escritorio */
}
.ticker-stats {
display: flex;
gap: 20px;
font-size: 0.9em;
color: #555;
}
.ticker-stats strong {
2025-09-02 20:34:49 -03:00
color: #0073e6;
font-size: 1.1em;
}
.ticker-results {
2025-09-01 14:04:40 -03:00
display: flex;
flex-direction: column;
2025-09-02 20:34:49 -03:00
gap: 12px;
}
.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 {
2025-09-02 20:34:49 -03:00
background-color: #e9ecef;
border-radius: 4px;
height: 10px;
overflow: hidden;
}
.party-bar-foreground {
height: 100%;
border-radius: 4px;
transition: width 0.5s ease-in-out;
2025-09-01 14:04:40 -03:00
}
.ticker-results {
display: grid;
2025-09-02 20:34:49 -03:00
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
2025-09-01 14:04:40 -03:00
gap: 20px;
}
.ticker-party {
display: flex;
align-items: center;
2025-09-02 20:34:49 -03:00
gap: 10px;
2025-09-01 14:04:40 -03:00
}
.party-logo {
flex-shrink: 0;
2025-09-02 15:39:17 -03:00
width: 75px;
height: 75px;
2025-09-01 14:04:40 -03:00
}
.party-logo img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 4px;
border: 1px solid #ddd;
}
.party-details {
flex-grow: 1;
2025-09-02 20:34:49 -03:00
min-width: 0;
}
/* --- ESTILOS PARA RESPONSIVIDAD MÓVIL --- */
@media (max-width: 600px) {
.ticker-header {
flex-direction: column;
/* Centra los elementos hijos horizontalmente */
align-items: center;
gap: 10px;
}
.ticker-header h3 {
font-size: 1.1em;
padding-right: 0; /* Quitamos el padding en móvil */
}
/* Esta regla asegura que el dropdown siga ocupando todo el ancho */
.ticker-header > div {
width: 100%;
}
.ticker-party .party-name {
white-space: normal;
}
}
.party-candidate-name {
font-size: 0.8rem;
color: #555;
margin-top: 4px; /* Espacio entre la barra y el nombre */
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}