Skip to content

Instantly share code, notes, and snippets.

@zhuangya
Created November 8, 2011 10:49
Show Gist options
  • Save zhuangya/1347480 to your computer and use it in GitHub Desktop.
Save zhuangya/1347480 to your computer and use it in GitHub Desktop.
md.css
::-moz-selection {
background-color: #19B8E6;
color: white;
text-shadow: none;
}
::selection {
background-color: #19B8E6;
color: white;
text-shadow: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
margin: 0;
padding: 0;
}
body {
background-color: #FBFBFB;
font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, sans-serif;
font-size: 14px;
line-height: 18px;
color: #555;
margin: 10px 10px 10px 20px;
text-shadow: 0 -1px 1px #F5F5F5;
}
a {
color: #0069d6;
}
a:hover {
color: #0050a3;
text-decoration: none;
}
a img {
border: none;
}
p {
margin-bottom: 9px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #404040;
line-height: 36px;
}
h1 {
margin-bottom: 18px;
font-size: 30px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 14px;
}
h6 {
font-size: 13px;
}
hr {
margin: 0 0 19px;
border: 0;
border-bottom: 1px solid #0CF;
}
blockquote {
padding: 13px 13px 21px 15px;
margin-bottom: 18px;
font-family:georgia,serif;
font-style: italic;
}
blockquote:before {
content:"\201C";
font-size:40px;
margin-left:-10px;
font-family:georgia,serif;
color:#eee;
}
blockquote p {
font-size: 14px;
font-weight: 300;
line-height: 18px;
margin-bottom: 0;
font-style: italic;
}
code, pre {
padding: 0 3px 2px;
font-family: Monaco, Andale Mono, Courier New, monospace;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
code {
background-color: #FEEACC;
color: rgba(0, 0, 0, 0.75);
padding: 1px 3px;
font-size: 12px;
}
pre {
display: block;
padding: 14px;
margin: 0 0 18px;
line-height: 16px;
font-size: 12px;
border: 1px dashed #0CF;
border: 1px dashed #0CF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
background-color: #F5F5F5;
}
pre code {
background-color: #F5F5F5;
color:#737373;
font-size: 12px;
}
@media screen and (min-width: 768px) {
body {
width: 748px;
margin:10px auto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment