mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 11:03:43 +03:00
Theme: Fix heading level styles
This commit is contained in:
parent
840ae50ac5
commit
c6c4baf62b
|
@ -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,
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue