44 lines
820 B
CSS
44 lines
820 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;
|
|
}
|
|
}
|
|
|
|
html[data-poyraz-theme="light"] {
|
|
--poyraz-background: #ffffff;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
html[data-poyraz-theme="light"] body {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
html[data-poyraz-theme="dark"] [data-cursor-portrait] {
|
|
display: none;
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
}
|