Sengi-Windows-MacOS-Linux/docs/assets/sass/base/_base.scss

30 lines
433 B
SCSS

*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%;
@include respond(tab-land) {
font-size: 56.25%;
}
@include respond(tab-port) {
font-size: 50%;
}
@include respond(big-desktop) {
font-size: 75%;
}
}
body {
box-sizing: border-box;
padding: 3rem;
@include respond(tab-port) {
padding: 0rem;
}
}