refactor: use scss features

This commit is contained in:
Guilherme Danno 2020-05-16 00:54:46 -03:00
parent 594580ec2d
commit 575dcd8334
4 changed files with 45 additions and 37 deletions

View file

@ -1,5 +1,11 @@
html {
@mixin font($weight: null, $size: null) {
font-family: "Noto Sans", sans-serif;
font-weight: $weight;
font-size: $size;
}
html {
@include font;
font-size: 93%;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
@ -7,25 +13,16 @@ html {
text-rendering: optimizeLegibility;
}
h1,
h2,
h3 {
font-family: "Noto Sans", sans-serif;
}
h1 {
font-weight: 400;
font-size: 1.8em;
@include font(400, 1.8em);
}
h2 {
font-weight: 400;
font-size: 1.5em;
@include font(400, 1.5em);
}
h3 {
font-weight: 400;
font-size: 1.17em;
@include font(400, 1.17em);
}
.layout-tv {