summary refs log tree commit diff
path: root/styles
diff options
context:
space:
mode:
Diffstat (limited to 'styles')
-rw-r--r--styles/fonts.scss16
-rw-r--r--styles/global.scss16
2 files changed, 0 insertions, 32 deletions
diff --git a/styles/fonts.scss b/styles/fonts.scss
deleted file mode 100644
index af6c36a..0000000
--- a/styles/fonts.scss
+++ /dev/null
@@ -1,16 +0,0 @@
-@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
deleted file mode 100644
index 53e5090..0000000
--- a/styles/global.scss
+++ /dev/null
@@ -1,16 +0,0 @@
-@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);
-}
-