wiki/_sass/_scaffolding.scss

27 lines
465 B
SCSS
Raw Normal View History

2018-04-20 19:57:10 -07:00
html body {
box-sizing: border-box;
overflow-x: hidden;
margin: 0;
padding: 0;
}
2017-12-02 02:04:52 -08:00
body {
background: $background;
color: $font-color;
2017-12-02 02:04:52 -08:00
font-family: $font-family;
font-size: $font-size;
letter-spacing: $letter-spacing;
line-height: $line-height;
2018-04-18 01:48:39 -07:00
font-feature-settings: "palt";
2017-12-02 02:04:52 -08:00
@include media-mobile {
font-size: $font-size-mobile;
}
::selection {
background-color: $selection-background;
color: $selection-font-color;
}
2017-12-02 02:04:52 -08:00
}