aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/download.html6
-rw-r--r--docs/templates/pages/download.mustache6
-rw-r--r--less/mixins.less6
-rw-r--r--less/variables.less4
4 files changed, 19 insertions, 3 deletions
diff --git a/docs/download.html b/docs/download.html
index 89ddd76a2..427dad76d 100644
--- a/docs/download.html
+++ b/docs/download.html
@@ -296,6 +296,12 @@
<input type="text" class="span3" placeholder="inherit">
<label>@heroUnitLeadColor</label>
<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 class="span3">
<h3>Tables</h3>
diff --git a/docs/templates/pages/download.mustache b/docs/templates/pages/download.mustache
index b282db6c9..d7cc9e9f7 100644
--- a/docs/templates/pages/download.mustache
+++ b/docs/templates/pages/download.mustache
@@ -220,6 +220,12 @@
<input type="text" class="span3" placeholder="inherit">
<label>@heroUnitLeadColor</label>
<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 class="span3">
<h3>{{_i}}Tables{{/i}}</h3>
diff --git a/less/mixins.less b/less/mixins.less
index a118fe7c4..c4b4ee82e 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -116,13 +116,13 @@
#font {
#family {
.serif() {
- font-family: Georgia, "Times New Roman", Times, serif;
+ font-family: @serifFontFamily;
}
.sans-serif() {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-family: @sansFontFamily;
}
.monospace() {
- font-family: Menlo, Monaco, "Courier New", monospace;
+ font-family: @monoFontFamily;
}
}
.shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
diff --git a/less/variables.less b/less/variables.less
index 812587fcd..1fb22ac32 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -54,6 +54,10 @@
@headingsFontWeight: bold; // instead of browser default, bold
@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
// -------------------------