feat: scaffold SvelteKit runtime

This commit is contained in:
vince 2026-06-18 17:29:01 +02:00
parent 1c287c782c
commit d87da6c1d1
14 changed files with 544 additions and 1 deletions

30
src/app.css Normal file
View file

@ -0,0 +1,30 @@
:root {
color-scheme: dark;
font-family:
"IBM Plex Mono", "Roboto Mono", "SFMono-Regular", Consolas, monospace;
background: #050505;
color: #f4f4f4;
text-rendering: geometricPrecision;
}
body {
min-width: 320px;
min-height: 100vh;
margin: 0;
background:
linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
#050505;
background-size: 48px 48px;
}
button,
input,
textarea,
select {
font: inherit;
}
a {
color: inherit;
}