diff options
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/global.css | 38 |
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; +} |
