Initial commit

This commit is contained in:
pettesae
2025-06-16 16:58:11 +02:00
commit b8e23816e3
30 changed files with 6699 additions and 0 deletions

43
src/styles/global.css Normal file
View File

@@ -0,0 +1,43 @@
@import "tailwindcss";
:root {
--font-avenir: "Avenir Next", sans-serif;
--background: #E5E2D7;
--text: #333333;
--accent: #C13131;
}
@theme {
--font-avenir: var(--font-avenir);
--color-background: var(--background);
--color-text: var(--text);
--color-accent: var(--accent);
}
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
body {
@apply text-lg;
font-family: var(--font-avenir);
color: var(--color-text);
background-color: var(--color-background);
}
a {
color: var(--color-accent);
text-decoration: none;
}
nav a {
display: inline-block;
text-decoration: none;
}
nav a.active {
font-weight: bolder;
text-decoration: underline;
}