2020-05-16 00:54:46 -03:00
|
|
|
@mixin header-font($size: null) {
|
2020-02-03 17:18:15 +01:00
|
|
|
font-weight: 400;
|
2020-05-16 00:54:46 -03:00
|
|
|
font-size: $size;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-05-16 00:54:46 -03:00
|
|
|
html {
|
|
|
|
@media all and (min-height: 720px) {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2018-10-23 01:13:23 +03:00
|
|
|
|
2020-05-16 00:54:46 -03:00
|
|
|
/* This is supposed to be 1080p, but had to reduce the min height to account for possible browser chrome */
|
|
|
|
@media all and (min-height: 1000px) {
|
|
|
|
font-size: 27px;
|
|
|
|
}
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2020-05-16 00:54:46 -03:00
|
|
|
h1 {
|
|
|
|
@include header-font(1.8em);
|
2018-10-23 01:13:23 +03:00
|
|
|
|
2020-05-16 00:54:46 -03:00
|
|
|
.layout-desktop & {
|
|
|
|
font-size: 2em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-16 00:54:46 -03:00
|
|
|
h2 {
|
|
|
|
@include header-font(1.8em);
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
@include header-font(1.17em);
|
2019-01-10 15:39:37 +03:00
|
|
|
}
|