30 lines
574 B
CSS
30 lines
574 B
CSS
@import "tailwindcss";
|
|
@import "poyraz-ui/preset.css";
|
|
|
|
@source "../node_modules/poyraz-ui/dist";
|
|
|
|
@theme {
|
|
--font-secondary: "Nunito", ui-rounded, "Avenir Next", system-ui, sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--poyraz-font-secondary: "Nunito", ui-rounded, "Avenir Next", system-ui, sans-serif;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
@keyframes marquee {
|
|
0% { transform: translateX(0%); }
|
|
100% { transform: translateX(-50%); }
|
|
}
|
|
|
|
.animate-marquee {
|
|
animation: marquee 35s linear infinite;
|
|
}
|
|
|
|
.pause-on-hover:hover {
|
|
animation-play-state: paused;
|
|
}
|
|
}
|