www/app/globals.css

43 lines
579 B
CSS
Raw Permalink Normal View History

2024-07-01 10:28:41 -04:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-07-01 11:11:56 -04:00
html {
font-family: var(--font-inter);
}
h1,
h2,
h3,
h4,
h5,
h6 {
2024-07-01 11:11:56 -04:00
font-family: var(--font-podkova);
}
2024-07-01 10:28:41 -04:00
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
.prose p {
@apply my-2;
}