From d4f98e2d1f85fbdffa2470071e22bba2dacc00c0 Mon Sep 17 00:00:00 2001 From: Leo Goetz Date: Fri, 8 May 2026 15:37:39 +0200 Subject: inital commit --- src/styles/global.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/styles/global.css (limited to 'src/styles/global.css') diff --git a/src/styles/global.css b/src/styles/global.css new file mode 100644 index 0000000..0277298 --- /dev/null +++ b/src/styles/global.css @@ -0,0 +1,38 @@ +@import "tailwindcss"; + +@layer base { + h1 { + @apply text-2xl; + } + h2 { + @apply text-xl; + } + h3 { + @apply text-lg; + } +} + +html, +body { + margin: auto; + padding: 0; + height: 100%; + width: 50vw; + min-width: 300px; + max-width: 700px; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.footer { + flex: 0; + background-color: green; +} + +body { + font-family: "Maple Mono", monospace; +} -- cgit v1.3.1