summaryrefslogtreecommitdiff
path: root/styles
diff options
context:
space:
mode:
authorKai Gunger <kgunger12@gmail.com>2026-08-17 22:06:08 -0400
committerKai Gunger <kgunger12@gmail.com>2026-08-17 22:06:08 -0400
commit0d07e632916903b1fa1f47bba883c15868f37ea3 (patch)
treee289b5fdc44ef7319a4ee40bece774d277f1f81e /styles
Initial commit
Diffstat (limited to 'styles')
-rw-r--r--styles/base.css57
1 files changed, 57 insertions, 0 deletions
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