32 lines
536 B
CSS
32 lines
536 B
CSS
/* src/App.css */
|
|
|
|
.container-legislativas2025 {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
@keyframes elecciones-logo-spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
.container-legislativas2025 a:nth-of-type(2) .logo {
|
|
animation: elecciones-logo-spin infinite 20s linear;
|
|
}
|
|
}
|
|
|
|
.container-legislativas2025 .card {
|
|
padding: 2em;
|
|
}
|
|
|
|
.container-legislativas2025 .read-the-docs {
|
|
color: #888;
|
|
} |