Created
January 15, 2016 11:03
-
-
Save partageit/37648f4ee0dffa2a0957 to your computer and use it in GitHub Desktop.
CSS for markdown-html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This CSS is for markdown-html */ | |
/* markdown-html -s "/path/to/markdown.css" -w "file.md" -o "file.html" */ | |
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0 | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, | |
article, aside, canvas, details, embed, | |
figure, figcaption, footer, header, hgroup, | |
menu, nav, output, ruby, section, summary, | |
time, mark, audio, video { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font-size: 100%; | |
font: inherit; | |
vertical-align: baseline; | |
} | |
/* HTML5 display-role reset for older browsers */ | |
article, aside, details, figcaption, figure, | |
footer, header, hgroup, menu, nav, section { | |
display: block; | |
} | |
body { | |
line-height: 1; | |
} | |
ol, ul { | |
list-style: none; | |
} | |
blockquote, q { | |
quotes: none; | |
} | |
blockquote:before, blockquote:after, | |
q:before, q:after { | |
content: ''; | |
content: none; | |
} | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
sup { | |
vertical-align: super; | |
font-size: smaller; | |
} | |
sub { | |
vertical-align: sub; | |
font-size: smaller; | |
} | |
/* Generic styles */ | |
body { | |
background: #f5f5f5; | |
color: #222; | |
font-family: 'Palatino Linotype','Book Antiqua',Palatino,FreeSerif,serif; | |
font-size: 16px; | |
margin: 0; | |
padding: 0; | |
} | |
h1, h2, h3, h4, h5, h6, | |
ul, ol, | |
p, | |
code, pre, | |
hr { | |
line-height: 1.5em; | |
margin: 1.5em 0 0.5em 0; | |
} | |
*:first-child { | |
margin-top: 0; | |
} | |
/* Headers */ | |
h1, h2, h3, h4, h5, h6 { | |
font-weight: bold; | |
} | |
h1 { | |
font-size: 3.5em; | |
} | |
h2 { | |
font-size: 2.5em; | |
margin-top: 2rem; | |
} | |
h3 { | |
font-size: 2em; | |
margin: 1rem 0; | |
} | |
h4 { | |
font-size: 1.5em; | |
margin: 1rem 0; | |
} | |
h5 { | |
font-size: 1.2em; | |
} | |
h6 { | |
font-size: 1em; | |
} | |
/* Lists */ | |
ul, ol { | |
padding-left: 2em; | |
} | |
ul { | |
list-style-type: disc; | |
} | |
ol { | |
list-style-type: decimal; | |
} | |
/* Code and pre */ | |
code, pre { | |
font-family: "Bitstream Vera Sans Mono", "Courier", monospace; | |
} | |
code { | |
background: none repeat scroll 0 0 #F8F8FF; | |
border: 1px solid #DEDEDE; | |
border-radius: 3px ; | |
padding: 0 0.2em; | |
} | |
pre { | |
border-left: 5px solid #eee; | |
margin-left: 2em; | |
padding-left: 1em; | |
} | |
pre > code { | |
background: transparent; | |
border: none; | |
padding: 0; | |
} | |
/* Links */ | |
a { | |
color: #261A3B; | |
} | |
a:visited { | |
color: #261A3B; | |
} | |
/* Inlines */ | |
strong { | |
font-weight: bold; | |
} | |
em { | |
font-style: italic; | |
} | |
/* Container */ | |
.container { | |
background: #FFF; | |
padding: 30px 50px; | |
margin: 0 auto; | |
width: 850px; | |
} | |
/* Customisations */ | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
pre { | |
white-space: pre-wrap; | |
word-wrap: break-word; | |
word-spacing: normal; | |
} | |
h1 { | |
color: #2c3e50; | |
} | |
h2 { | |
color: #16a085; | |
} | |
h3 { | |
color: #3498db; | |
} | |
table { | |
min-width: 100%; | |
} | |
th { | |
font-weight: bold; | |
} | |
td { | |
border: 1px solid #cccccc; | |
padding: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment