21 lines
435 B
Sass
21 lines
435 B
Sass
@import "./_variables"
|
|
|
|
a
|
|
text-decoration: none
|
|
color: white
|
|
|
|
// padding: 0
|
|
// margin: 0
|
|
|
|
html
|
|
font-family: "Flachbau"
|
|
background: $background-dark
|
|
color: $text-dark
|
|
&[data-theme="light"]
|
|
background: $background-light
|
|
color: $text-light
|
|
|
|
@font-face
|
|
font-family: "Flachbau"
|
|
src: local("fonts/Flachbau.ttf") format("truetype")
|
|
src: url("fonts/Flachbau.ttf") format("truetype")
|