wiki/_sass/_scaffolding.scss

27 lines
465 B
SCSS

html body {
box-sizing: border-box;
overflow-x: hidden;
margin: 0;
padding: 0;
}
body {
background: $background;
color: $font-color;
font-family: $font-family;
font-size: $font-size;
letter-spacing: $letter-spacing;
line-height: $line-height;
font-feature-settings: "palt";
@include media-mobile {
font-size: $font-size-mobile;
}
::selection {
background-color: $selection-background;
color: $selection-font-color;
}
}