homepage/tailwind.css

58 lines
890 B
CSS
Raw Normal View History

2024-02-25 13:20:06 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
2024-07-02 16:21:57 +02:00
@font-face {
font-family: "JetBrains Mono";
src: url("https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Regular.woff2")
format("woff2"),
url("https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Regular.woff")
format("woff");
font-weight: 400;
font-style: normal;
font-display: auto;
}
html {
font-family: "JetBrains Mono", sans-serif, system-ui;
}
h1,
h2,
h3 {
@apply font-bold;
}
h1,
h2 {
@apply text-center;
}
h1 {
@apply text-2xl;
}
h2 {
@apply text-xl;
}
h3 {
@apply text-lg;
}
h4 {
@apply text-base;
}
nav a,
footer a {
@apply hover:text-turquoise;
@apply hover:text-opacity-75;
}
.active-page {
@apply text-turquoise;
}
2024-03-14 07:57:30 +01:00
}