From: Jérémy Fabre Date: Thu, 15 Sep 2016 10:23:09 +0000 (+0200) Subject: Add h3 style X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=c932b194f68c3a2acb839c42695ef0bc0d940c44;p=mezzo.git Add h3 style --- diff --git a/app/static/src/sass/config/_variables.scss b/app/static/src/sass/config/_variables.scss index fb3a6d9b..a52d257d 100755 --- a/app/static/src/sass/config/_variables.scss +++ b/app/static/src/sass/config/_variables.scss @@ -77,6 +77,11 @@ $typestyles: ( font-size: xxl, line-height: 1.5, weight: regular + ), + heading-3: ( + font-size: l, + line-height: 1.5, + weight: regular ) ); diff --git a/app/static/src/sass/global/_typography.scss b/app/static/src/sass/global/_typography.scss index 6dcd0dd5..d0160728 100755 --- a/app/static/src/sass/global/_typography.scss +++ b/app/static/src/sass/global/_typography.scss @@ -39,6 +39,13 @@ h2 { } } +h3 { + @include typeset(heading-3); + @include typeface(sans-serif); + @include margin-bottom(1); + @include margin-top(1); +} + p { @include margin-top(0); @include margin-bottom(1);