1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00
danbarber.me/_assets/stylesheets/elements/_html.scss
2018-11-10 16:17:37 -05:00

25 lines
434 B
SCSS

html {
background: $background-color;
font-size: 100%;
@media (prefers-color-scheme: dark) {
background: $background-color-dark;
}
@media only screen and (min-width: 450px) {
font-size: 110%;
}
@media only screen and (min-width: 650px) {
font-size: 125%;
}
@media only screen and (min-width: 768px) {
font-size: 135%;
}
@media only screen and (min-width: 892px) {
font-size: 145%;
}
}