29 lines
571 B
CSS
29 lines
571 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-chocolatebg: oklch(0.2 0.01 50);
|
|
--color-offwhitebg: oklch(0.97 0.005 75);
|
|
|
|
--font-lora: "Lora", ui-serif, Georgia, Cambria, "Times New Roman", serif;
|
|
--font-lexend: "Lexend", sans-serif;
|
|
|
|
--breakpoint-xs: 30rem;
|
|
|
|
--animate-marquee: marquee 180s linear infinite;
|
|
}
|
|
|
|
@keyframes marquee {
|
|
0% {
|
|
transform: translateX(0%);
|
|
}
|
|
100% {
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.animate-marquee {
|
|
animation-play-state: paused;
|
|
}
|
|
}
|