Theme: Fix heading level styles

This commit is contained in:
Kelly Dwan 2019-10-28 17:02:45 -04:00
parent 840ae50ac5
commit c6c4baf62b
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D
2 changed files with 22 additions and 3 deletions

View file

@ -1,5 +1,18 @@
body.page-about .entry-content { body.page-about .entry-content {
h2 {
margin-top: ms(10);
margin-bottom: ms(2);
font-size: ms(8);
font-weight: 300;
}
h3 {
font-size: ms(2);
font-weight: 400;
color: $color__text-heading;
}
@include breakpoint( $breakpoint-tablet ) { @include breakpoint( $breakpoint-tablet ) {
> p, > p,
> ul, > ul,

View file

@ -9,11 +9,17 @@
h2 { h2 {
margin-top: ms(10); margin-top: ms(10);
margin-bottom: ms(2);
font-size: ms(2); font-size: ms(2);
font-weight: 400; font-weight: 400;
color: $color__text-heading; color: $color__text-heading;
} }
h3 {
font-size: ms(1);
color: $color__text-darker;
}
> :first-child { > :first-child {
margin-top: 0; margin-top: 0;
} }