Commit 78e37e7d authored by Mark Otto's avatar Mark Otto

Merge branch 'font-variables' of https://github.com/ctalkington/bootstrap into...

Merge branch 'font-variables' of https://github.com/ctalkington/bootstrap into ctalkington-font-variables
parents 89ea238c 2c4230e2
...@@ -296,6 +296,12 @@ ...@@ -296,6 +296,12 @@
<input type="text" class="span3" placeholder="inherit"> <input type="text" class="span3" placeholder="inherit">
<label>@heroUnitLeadColor</label> <label>@heroUnitLeadColor</label>
<input type="text" class="span3" placeholder="inherit"> <input type="text" class="span3" placeholder="inherit">
<label>@serifFontFamily</label>
<input type="text" class="span3" placeholder="Georgia, 'Times New Roman', Times, serif">
<label>@sansFontFamily</label>
<input type="text" class="span3" placeholder="'Helvetica Neue', Helvetica, Arial, sans-serif">
<label>@monoFontFamily</label>
<input type="text" class="span3" placeholder="Menlo, Monaco, 'Courier New', monospace">
</div><!-- /span --> </div><!-- /span -->
<div class="span3"> <div class="span3">
<h3>Tables</h3> <h3>Tables</h3>
......
...@@ -220,6 +220,12 @@ ...@@ -220,6 +220,12 @@
<input type="text" class="span3" placeholder="inherit"> <input type="text" class="span3" placeholder="inherit">
<label>@heroUnitLeadColor</label> <label>@heroUnitLeadColor</label>
<input type="text" class="span3" placeholder="inherit"> <input type="text" class="span3" placeholder="inherit">
<label>@serifFontFamily</label>
<input type="text" class="span3" placeholder="Georgia, 'Times New Roman', Times, serif">
<label>@sansFontFamily</label>
<input type="text" class="span3" placeholder="'Helvetica Neue', Helvetica, Arial, sans-serif">
<label>@monoFontFamily</label>
<input type="text" class="span3" placeholder="Menlo, Monaco, 'Courier New', monospace">
</div><!-- /span --> </div><!-- /span -->
<div class="span3"> <div class="span3">
<h3>{{_i}}Tables{{/i}}</h3> <h3>{{_i}}Tables{{/i}}</h3>
......
...@@ -116,13 +116,13 @@ ...@@ -116,13 +116,13 @@
#font { #font {
#family { #family {
.serif() { .serif() {
font-family: Georgia, "Times New Roman", Times, serif; font-family: @serifFontFamily;
} }
.sans-serif() { .sans-serif() {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: @sansFontFamily;
} }
.monospace() { .monospace() {
font-family: Menlo, Monaco, "Courier New", monospace; font-family: @monoFontFamily;
} }
} }
.shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) { .shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
......
...@@ -54,6 +54,10 @@ ...@@ -54,6 +54,10 @@
@headingsFontWeight: bold; // instead of browser default, bold @headingsFontWeight: bold; // instead of browser default, bold
@headingsColor: inherit; // empty to use BS default, @textColor @headingsColor: inherit; // empty to use BS default, @textColor
@serifFontFamily: Georgia, "Times New Roman", Times, serif;
@sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
@monoFontFamily: Menlo, Monaco, "Courier New", monospace;
// Tables // Tables
// ------------------------- // -------------------------
......
Markdown is supported
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