From f5f542777febe6a2a4463bb8042e9a72e628e724 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Sat, 22 Mar 2025 18:02:52 -0600 Subject: Fonts --- styles/fonts.scss | 16 ++++++++++++++++ styles/global.scss | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 styles/fonts.scss create mode 100644 styles/global.scss (limited to 'styles') diff --git a/styles/fonts.scss b/styles/fonts.scss new file mode 100644 index 0000000..af6c36a --- /dev/null +++ b/styles/fonts.scss @@ -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/styles/global.scss b/styles/global.scss new file mode 100644 index 0000000..53e5090 --- /dev/null +++ b/styles/global.scss @@ -0,0 +1,16 @@ +@import './fonts.scss'; + +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