From 0d07e632916903b1fa1f47bba883c15868f37ea3 Mon Sep 17 00:00:00 2001 From: Kai Gunger Date: Mon, 17 Aug 2026 22:06:08 -0400 Subject: Initial commit --- styles/base.css | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 styles/base.css (limited to 'styles') diff --git a/styles/base.css b/styles/base.css new file mode 100644 index 0000000..338b19f --- /dev/null +++ b/styles/base.css @@ -0,0 +1,57 @@ +@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); + +html, body { + display: block; + padding: 0; + margin: 0; + min-width:100vw; + min-height:100vh; +} + +* { + font-family: "Nunito", sans-serif; + font-optical-sizing: auto; + font-weight: 400; + font-style: normal; + + box-sizing: border-box; +} + + + +nav { + display: flex; + background-color: #9f3050; + + height: 64px; +} + +#logo { + height: 100%; +} + + + +content { + display:flex; + width: 100vw; + min-height: calc(100vh - 128px); + padding: 10px 10px 10px 10px; + + background-color: #ffecdc; +} + + + +footer { + display: flex; + + width:100vw; + height:64px; + bottom:0; + + padding: 10px; + + background-color: #777; + color: #eee; +} \ No newline at end of file -- cgit v1.2.3