2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

fix quotes in font-family usage

This commit is contained in:
Mark Otto
2011-12-27 16:50:27 -06:00
parent e78d5f8ff3
commit 550879cf66
+2 -2
View File
@@ -54,13 +54,13 @@
#font { #font {
#family { #family {
.serif() { .serif() {
font-family: "Georgia", Times New Roman, Times, serif; font-family: Georgia, "Times New Roman", Times, serif;
} }
.sans-serif() { .sans-serif() {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
} }
.monospace() { .monospace() {
font-family: "Menlo", Monaco, Courier New, monospace; font-family: Menlo, Monaco, Courier New, monospace;
} }
} }
.shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) { .shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {