| Index: static/scss/content/_typography.scss |
| =================================================================== |
| --- a/static/scss/content/_typography.scss |
| +++ b/static/scss/content/_typography.scss |
| @@ -17,8 +17,43 @@ |
| body |
| { |
| color: $font-color-default; |
| font-family: $primary-font; |
| font-size: $medium-font; |
| font-weight: $normal-weight; |
| line-height: 1.5; |
| } |
| + |
| +.h1 |
|
juliandoucette
2017/08/24 11:14:00
Note: Maybe we should make these configurable via
ire
2017/08/28 14:54:48
I like the idea
|
| +{ |
| + font-size: $font-size-h3; |
| + line-height: 1.2; |
| + |
| + @media (min-width: $mobile-breakpoint) |
| + { |
| + font-size: $font-size-h2; |
| + } |
| + |
| + @media (min-width: $tablet-breakpoint) |
| + { |
| + font-size: $font-size-h1; |
| + } |
| +} |
| + |
| +.h4 |
| +{ |
| + font-size: $font-size-h4; |
| + font-weight: $bold-weight; |
| + text-transform: uppercase; |
| +} |
| + |
| +.heading-icon |
| +{ |
| + height: 0.9em; |
|
juliandoucette
2017/08/24 11:14:00
NIT: My spidy-senses are telling me that 90% may b
ire
2017/08/28 14:54:48
90% makes the icon really small. I can't figure ou
juliandoucette
2017/09/12 13:21:53
Acknowledged. % height didn't work when I tested j
|
| + margin-right: 0.3em; |
| +} |
| + |
| +[dir="rtl"] .heading-icon |
| +{ |
| + margin-right: 0; |
| + margin-left: 0.3em; |
| +} |