jellyfish-web/src/styles/fonts.sized.scss

32 lines
527 B
SCSS
Raw Normal View History

2020-05-16 00:54:46 -03:00
@mixin header-font($size: null) {
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);
}