2
0
mirror of synced 2025-02-24 17:08:11 +00:00
blog/themes/embark/source/css/03-elements/_elements.headings.scss
Jakub Sokołowski c7acd418c2
first commit
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-06-18 12:29:57 +02:00

40 lines
482 B
SCSS

h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: $font-bold-weight;
line-height: $font-base-line-height;
}
h1 {
font-size: $font-level-1-size;
@include breakpoint(l) {
font-size: get-font-size(xxl);
}
}
h2 {
font-size: $font-level-2-size;
@include breakpoint(l) {
font-size: get-font-size(xl);
}
}
h3 {
font-size: $font-level-3-size;
@include breakpoint(l) {
font-size: get-font-size(l);
}
}
h4,
h5,
h6 {
font-size: $font-level-4-size;
}