markdown.css -> markdown.less

This commit is contained in:
Justin Palmer
2013-03-04 11:12:33 -08:00
committed by Corey Johnson
parent b502c811cb
commit 0e2ada4a91
2 changed files with 25 additions and 23 deletions

View File

@@ -1,23 +0,0 @@
.source.gfm {
-webkit-font-smoothing: antialiased;
}
.gfm .markup.heading {
font-weight: bold;
}
.gfm .bold {
font-weight: bold;
}
.gfm .italic {
font-style: italic;
}
.gfm .comment.quote {
font-style: italic;
}
.gfm .raw {
-webkit-font-smoothing: subpixel-antialiased;
}

25
static/markdown.less Normal file
View File

@@ -0,0 +1,25 @@
.source {
.gfm {
-webkit-font-smoothing: antialiased;
.markup.heading {
font-weight: bold;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.comment.quote {
font-style: italic;
}
.raw {
-webkit-font-smoothing: subpixel-antialiased;
}
}
}