From d5bbe0ef503d112cdec3bac48c159a6873a495c3 Mon Sep 17 00:00:00 2001 From: Korbs Date: Thu, 5 Sep 2024 00:24:15 -0400 Subject: [PATCH] Apply SCSS --- web/styles/base.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 web/styles/base.scss diff --git a/web/styles/base.scss b/web/styles/base.scss new file mode 100644 index 0000000..5e0cbfe --- /dev/null +++ b/web/styles/base.scss @@ -0,0 +1,17 @@ +// Use Mona Sans Font +// https://github.com/github/mona-sans +@font-face { + font-family: 'Mona Sans'; + src: + url('/fonts/mona-sans/Mona-Sans.woff2') format('woff2 supports variations'), + url('/fonts/mona-sans/Mona-Sans.woff2') format('woff2-variations'); + font-weight: 200 900; + font-stretch: 75% 125%; +} +body {font-family: 'Mona Sans'} + +// Body +body { + background: black; + color: white; +} \ No newline at end of file