34 lines
810 B
CSS
34 lines
810 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/Inter.woff2") format("woff2 supports variations"),
|
|
url("/fonts/Inter.woff2") format("woff2-variations");
|
|
font-weight: 400 700;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/Inter-Italic.woff2") format("woff2 supports variations"),
|
|
url("/fonts/Inter-Italic.woff2") format("woff2-variations");
|
|
font-weight: 400 700;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
"Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
@layer utilities {
|
|
.flow > * + * {
|
|
margin-top: 1em;
|
|
}
|
|
}
|