UniSquat_Python/static/demostyle.css
2024-02-12 16:34:10 +01:00

25 lines
330 B
CSS

:root {
--bg: #ffffff;
--fg: #303355;
--special: #c09f80;
}
body {
background: var(--bg);
color: var(--fg);
}
.slide-track {
animation: scroll 40s linear infinite;
display: flex;
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(calc(-250px * 7))}
}
.slider {
overflow:hidden;
}