Apply SCSS

This commit is contained in:
Korbs 2024-09-05 00:24:15 -04:00
parent a9a1fe66b4
commit d5bbe0ef50

17
web/styles/base.scss Normal file
View file

@ -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;
}