23 lines
277 B
SCSS
23 lines
277 B
SCSS
@import 'vars';
|
|
|
|
html,
|
|
body {
|
|
font-size: $base-font-size;
|
|
font-family: $base-font-family;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
@media (max-width: $first-media-step) {
|
|
font-size: $base-font-size - 2px;
|
|
}
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: normal;
|
|
}
|