Pārlūkot izejas kodu

don't reduce line height for all headings in base theme (#753)

Hakim El Hattab 11 gadi atpakaļ
vecāks
revīzija
1aadc53eac

+ 1 - 1
css/theme/beige.css

@@ -48,7 +48,7 @@ body {
   margin: 0 0 20px 0;
   color: #333333;
   font-family: "League Gothic", Impact, sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: uppercase;
   text-shadow: none; }

+ 1 - 1
css/theme/blood.css

@@ -47,7 +47,7 @@ body {
   margin: 0 0 20px 0;
   color: #eeeeee;
   font-family: Ubuntu, "sans-serif";
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: uppercase;
   text-shadow: 2px 2px 2px #222222; }

+ 1 - 1
css/theme/default.css

@@ -48,7 +48,7 @@ body {
   margin: 0 0 20px 0;
   color: #eeeeee;
   font-family: "League Gothic", Impact, sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: uppercase;
   text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }

+ 1 - 1
css/theme/moon.css

@@ -48,7 +48,7 @@ body {
   margin: 0 0 20px 0;
   color: #eee8d5;
   font-family: "League Gothic", Impact, sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: uppercase;
   text-shadow: none; }

+ 1 - 1
css/theme/night.css

@@ -36,7 +36,7 @@ body {
   margin: 0 0 20px 0;
   color: #eeeeee;
   font-family: "Montserrat", Impact, sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: -0.03em;
   text-transform: none;
   text-shadow: none; }

+ 1 - 1
css/theme/serif.css

@@ -38,7 +38,7 @@ body {
   margin: 0 0 20px 0;
   color: #383d3d;
   font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: none;
   text-shadow: none; }

+ 1 - 1
css/theme/simple.css

@@ -38,7 +38,7 @@ body {
   margin: 0 0 20px 0;
   color: black;
   font-family: "News Cycle", Impact, sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: none;
   text-shadow: none; }

+ 1 - 1
css/theme/sky.css

@@ -45,7 +45,7 @@ body {
   margin: 0 0 20px 0;
   color: #333333;
   font-family: "Quicksand", sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: -0.08em;
   text-transform: uppercase;
   text-shadow: none; }

+ 1 - 1
css/theme/solarized.css

@@ -48,7 +48,7 @@ body {
   margin: 0 0 20px 0;
   color: #586e75;
   font-family: "League Gothic", Impact, sans-serif;
-  line-height: 0.9em;
+  line-height: 1em;
   letter-spacing: 0.02em;
   text-transform: uppercase;
   text-shadow: none; }

+ 1 - 1
css/theme/template/settings.scss

@@ -13,7 +13,7 @@ $mainColor: #eee;
 $headingMargin: 0 0 20px 0;
 $headingFont: 'League Gothic', Impact, sans-serif;
 $headingColor: #eee;
-$headingLineHeight: 0.9em;
+$headingLineHeight: 1em;
 $headingLetterSpacing: 0.02em;
 $headingTextTransform: uppercase;
 $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);