aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-03-22 17:18:07 -0700
committerMark Otto <[email protected]>2012-03-22 17:18:07 -0700
commite0c85fb69cfc4a9956856e0b14afb12def2fccf0 (patch)
tree58c9c3777d987d1d41ae039c33cb64ab0fde3122 /less
parent78e37e7d21eaa52e88f77df40c1334bce32ec84c (diff)
downloadbootstrap-e0c85fb69cfc4a9956856e0b14afb12def2fccf0.tar.xz
bootstrap-e0c85fb69cfc4a9956856e0b14afb12def2fccf0.zip
use new font-stack mixins in base and alt font family mixins
Diffstat (limited to 'less')
-rw-r--r--less/variables.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/variables.less b/less/variables.less
index 1fb22ac32..c8e2a3c0d 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -45,19 +45,19 @@
// Typography
// -------------------------
+@sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
+@serifFontFamily: Georgia, "Times New Roman", Times, serif;
+@monoFontFamily: Menlo, Monaco, "Courier New", monospace;
+
@baseFontSize: 13px;
-@baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
+@baseFontFamily: @sansFontFamily;
@baseLineHeight: 18px;
-@altFontFamily: Georgia, "Times New Roman", Times, serif;
+@altFontFamily: @serifFontFamily;
@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
@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
// -------------------------