Update and normalize meta title style

This commit is contained in:
Ramon Wenger 2019-07-31 15:31:27 +02:00
parent 9e118720b0
commit 99c39b1b69
3 changed files with 6 additions and 7 deletions

View File

@ -157,11 +157,7 @@
} }
&__meta-title { &__meta-title {
color: $color-silver-dark; @include meta-title;
font-size: 2.25rem;
font-weight: 300;
font-family: $serif-font-family;
line-height: 3.25rem;
} }
&__intro { &__intro {

View File

@ -131,7 +131,7 @@
width: 100%; width: 100%;
&__title { &__title {
@include heading-2; @include meta-title;
margin: 0; margin: 0;
} }
} }

View File

@ -118,8 +118,11 @@
} }
@mixin meta-title { @mixin meta-title {
font-family: $serif-font-family; color: $color-silver-dark;
font-size: toRem(36px); font-size: toRem(36px);
font-weight: 300;
font-family: $serif-font-family;
line-height: $default-heading-line-height;
} }
@mixin lead-paragraph { @mixin lead-paragraph {