Commit f4e879a9 authored by Mark Otto's avatar Mark Otto
Browse files

fix the font-family var by using inherit instead of empty string, fix...

fix the font-family var by using inherit instead of empty string, fix font-weight in docs for jumbotron
parent c414e57d
1 merge request!1952Tabulation navigation with Typeahead
Showing with 6 additions and 5 deletions
+6 -5
No preview for this file type
...@@ -310,9 +310,9 @@ h4, ...@@ -310,9 +310,9 @@ h4,
h5, h5,
h6 { h6 {
margin: 0; margin: 0;
font-family: ''; font-family: inherit;
font-weight: normal; font-weight: normal;
color: ''; color: inherit;
text-rendering: optimizelegibility; text-rendering: optimizelegibility;
} }
h1 small, h1 small,
......
...@@ -63,6 +63,7 @@ hr.soften { ...@@ -63,6 +63,7 @@ hr.soften {
.jumbotron h1 { .jumbotron h1 {
margin-bottom: 9px; margin-bottom: 9px;
font-size: 81px; font-size: 81px;
font-weight: bold;
letter-spacing: -1px; letter-spacing: -1px;
line-height: 1; line-height: 1;
} }
......
...@@ -50,9 +50,9 @@ ...@@ -50,9 +50,9 @@
@baseLineHeight: 18px; @baseLineHeight: 18px;
@altFontFamily: Georgia, "Times New Roman", Times, serif; @altFontFamily: Georgia, "Times New Roman", Times, serif;
@headingsFontFamily: ''; // empty to use BS default, @baseFontFamily @headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
@headingsFontWeight: normal; // instead of browser default, bold @headingsFontWeight: normal; // instead of browser default, bold
@headingsColor: ''; // empty to use BS default, @textColor @headingsColor: inherit; // empty to use BS default, @textColor
// Tables // Tables
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment