Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: static/scss/content/_typography.scss

Issue 29516622: Issue 5511 - Create Product Help Home Template for help.eyeo.com (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Created Aug. 15, 2017, 3:01 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}

Powered by Google App Engine
This is Rietveld