From c932b194f68c3a2acb839c42695ef0bc0d940c44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= Date: Thu, 15 Sep 2016 12:23:09 +0200 Subject: [PATCH] Add h3 style --- app/static/src/sass/config/_variables.scss | 5 +++++ app/static/src/sass/global/_typography.scss | 7 +++++++ 2 files changed, 12 insertions(+) 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); -- 2.39.5