Commit 550879cf authored by Mark Otto's avatar Mark Otto

fix quotes in font-family usage

parent e78d5f8f
...@@ -54,13 +54,13 @@ ...@@ -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) {
......
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