version update to nuxt4

This commit is contained in:
Julian Krauser 2025-07-23 13:46:18 +02:00
parent 7f1770d442
commit ef84942e38
41 changed files with 5134 additions and 4946 deletions

60
app/assets/app.css Normal file
View file

@ -0,0 +1,60 @@
@import "tailwindcss";
@theme {
--color-primary: #b22222;
--color-darkgray: #2b292a;
--color-lightgray: #e3dfdf;
}
* {
font-family: "ConthraxSemiBold";
}
html,
body {
@apply bg-white text-black w-full min-h-screen;
}
[primary] {
@apply bg-primary text-white;
}
a {
@apply cursor-pointer;
}
a[primary-link] {
@apply text-xl;
}
a[primary-link].active {
@apply underline;
}
a[primary-sublink] {
@apply text-xl p-2;
}
a[primary-sublink].active {
@apply bg-white text-primary;
}
[lightgray] {
@apply bg-lightgray;
}
[darkgray] {
@apply bg-darkgray text-white;
}
h1 {
@apply text-2xl;
}
h2 {
@apply text-xl;
}
h3 {
@apply text-lg;
}