summaryrefslogtreecommitdiff
path: root/src/styles/global.css
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2026-05-08 15:37:39 +0200
committerLeo Goetz <dev@leogtz.de>2026-05-08 15:37:39 +0200
commitd4f98e2d1f85fbdffa2470071e22bba2dacc00c0 (patch)
tree02aff46bd5791d1eddca4432f89bc44945b8b033 /src/styles/global.css
inital commitHEADmaster
Diffstat (limited to 'src/styles/global.css')
-rw-r--r--src/styles/global.css38
1 files changed, 38 insertions, 0 deletions
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;
+}