Apply SCSS
This commit is contained in:
parent
a9a1fe66b4
commit
d5bbe0ef50
1 changed files with 17 additions and 0 deletions
17
web/styles/base.scss
Normal file
17
web/styles/base.scss
Normal 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;
|
||||
}
|
Reference in a new issue