Skip to content

Instantly share code, notes, and snippets.

@timblair
Created August 25, 2011 15:57
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timblair/1171018 to your computer and use it in GitHub Desktop.
Save timblair/1171018 to your computer and use it in GitHub Desktop.
Simple Markdown CSS
/* Based on http://kevinburke.bitbucket.org/markdowncss/ */
body{
margin: 0 auto;
font-family: Georgia, Palatino, serif;
color: #444444;
line-height: 1;
max-width: 960px;
padding: 30px;
}
h1, h2, h3, h4 {
color: #111111;
font-weight: 400;
}
h1, h2, h3, h4, h5, p {
margin-bottom: 24px;
padding: 0;
}
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
margin: 24px 0 6px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 21px;
}
h5 {
font-size: 18px;
}
a {
color: #0099ff;
margin: 0;
padding: 0;
vertical-align: baseline;
}
ul, ol {
padding: 0;
margin: 0;
}
li {
line-height: 24px;
}
li ul, li ul {
margin-left: 24px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
max-width: 540px;
}
pre {
padding: 0px 24px;
max-width: 800px;
white-space: pre-wrap;
}
code {
font-family: Consolas, Monaco, Andale Mono, monospace;
line-height: 1.5;
font-size: 13px;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
margin: 1em 2em;
max-width: 476px;
}
blockquote p {
color: #666;
max-width: 460px;
}
hr {
width: 540px;
text-align: left;
margin: 0 auto 0 0;
color: #999;
}
table {
border-collapse: collapse;
margin: 1em 1em;
border: 1px solid #CCC;
}
table thead {
background-color: #EEE;
}
table thead td {
color: #666;
}
table td {
padding: 0.5em 1em;
border: 1px solid #CCC;
}
@huzpsb
Copy link

huzpsb commented May 5, 2023

Good for desktop; destructive on mobiles D:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment