Install sass

This commit is contained in:
2022-11-01 21:15:51 +02:00
parent 398a73cec1
commit 08ebc9569d
6 changed files with 350 additions and 155 deletions

21
styles/globals.scss Normal file
View File

@@ -0,0 +1,21 @@
html,
body {
padding: 0;
margin: 0;
font-family: 'Quicksand';
}
@font-face {
font-family: 'Quicksand';
src: url('/Quicksand-VariableFont_wght.ttf');
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
}