1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/assets/styles/base/_headings.scss
Chauncey McAskill 79219e0659 Updated EditorConfig Recommendations
Applied 4-spaces for everything as per: https://locomotivemtl.teamwork.com/tasks/7113032
2016-09-07 18:30:36 -04:00

47 lines
654 B
SCSS

// ==========================================================================
// Headings
// ==========================================================================
@mixin h {
margin-top: 0;
line-height: $heading-line-height;
}
.o-h {
@include h;
}
h1, .o-h1 {
@extend .o-h;
font-size: rem($heading1);
}
h2, .o-h2 {
@extend .o-h;
font-size: rem($heading2);
}
h3, .o-h3 {
@extend .o-h;
font-size: rem($heading3);
}
h4, .o-h4 {
@extend .o-h;
font-size: rem($heading4);
}
h5, .o-h5 {
@extend .o-h;
font-size: rem($heading5);
}
h6, .o-h6 {
@extend .o-h;
font-size: rem($heading6);
}