laconic.com/src/components/primitives/heading/heading.module.scss
2022-03-30 22:47:43 -03:00

57 lines
922 B
SCSS

@import 'css/helpers';
.heading {
font-family: var(--font-heading);
font-weight: 400;
font-kerning: none;
margin: 0;
&.centered {
text-align: center;
}
&--xl {
font-size: tovw(110px, 'default', 50px);
line-height: 1.1;
letter-spacing: tovw(-3px);
}
&--lg {
font-size: tovw(76px, 'default', 42px);
line-height: 1;
}
&--md {
font-size: tovw(58px, 'default', 30px);
line-height: 1.1;
@media screen and (max-width: 800px) {
line-height: 1.24;
}
}
&--sm {
font-size: tovw(40px, 'default', 30px);
line-height: 1;
}
&--xs {
font-size: tovw(12px, 'default', 12px);
line-height: 1.3;
letter-spacing: tovw(-0.5px);
text-transform: uppercase;
}
&--arthemys {
font-family: var(--font-arthemys);
}
&--tthoves {
font-family: var(--font-tt-hoves);
}
&--dmmono {
font-family: var(--font-dm-mono);
}
}