troylusty.com/src/styles/global.css

39 lines
705 B
CSS
Raw Normal View History

2024-12-23 21:18:55 +00:00
@import "@fontsource-variable/red-hat-mono";
@import "@fontsource-variable/outfit";
2025-01-06 15:37:15 +00:00
@import "@fontsource/borel";
2024-12-23 21:18:55 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--primary: 0deg 0% 99%;
--secondary: 0deg 0% 13%;
--tertiary: 0deg 0% 51%;
--accent: 0deg 0% 39%;
2024-12-23 21:18:55 +00:00
}
@media (prefers-color-scheme: dark) {
:root {
--primary: 0deg 0% 0%;
--secondary: 0deg 0% 93%;
--tertiary: 0deg 0% 45%;
--accent: 0deg 0% 71%;
2024-12-23 21:18:55 +00:00
}
}
}
@layer components {
.prose img {
@apply transition-transform hover:scale-[98%] active:scale-[200%];
}
}
2025-01-17 22:16:14 +00:00
@media print {
body {
margin: 0;
color: #000;
background-color: #fff;
}
}