From 2dacece4eedc8af2ccde3be6918371293350cc4e Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Sat, 26 Apr 2025 21:06:00 -0600 Subject: Convert to rocket and morgana --- public/.gitkeep | 0 public/styles/fonts.css | 16 ++++++++++++++++ public/styles/global.css | 14 ++++++++++++++ 3 files changed, 30 insertions(+) delete mode 100644 public/.gitkeep create mode 100644 public/styles/fonts.css create mode 100644 public/styles/global.css (limited to 'public') diff --git a/public/.gitkeep b/public/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/public/styles/fonts.css b/public/styles/fonts.css new file mode 100644 index 0000000..af6c36a --- /dev/null +++ b/public/styles/fonts.css @@ -0,0 +1,16 @@ +@font-face { + font-family: "Quicksand"; + font-weight: 400; + src: url("/fonts/Quicksand-Regular.ttf") format("truetype"); +} + +@font-face { + font-family: "Drafting"; + font-weight: 200; + src: url("/fonts/DraftingMono-ExtraLight.woff2") format("woff2"); +} + +:root { + --font-family-heading: "Drafting", Times, serif; + --font-family-body: "Quicksand", Arial, sans-serif; +} diff --git a/public/styles/global.css b/public/styles/global.css new file mode 100644 index 0000000..2d39674 --- /dev/null +++ b/public/styles/global.css @@ -0,0 +1,14 @@ +html { + margin: 0; + padding: 0; + background: linear-gradient(to bottom, #444, #222); + min-height: 100vh; +} + +body { + min-height: 100vh; + margin: 0 auto; + box-sizing: border-box; + font-family: var(--font-family-body); +} + -- cgit 1.4.1