Skip to content

Instantly share code, notes, and snippets.

@jakebellacera
Created February 20, 2012 21:39
Show Gist options
  • Save jakebellacera/1871630 to your computer and use it in GitHub Desktop.
Save jakebellacera/1871630 to your computer and use it in GitHub Desktop.
Basic content formatting -- IN SASS!
#container .content {
&, p, ul, ol, li, blockquote { font: 13px/1.5em $bodyFontFamily; }
ul, ol {
padding: 0.5em 0 0.5em 2em;
margin-left: 1em;
& + p:first-of-type { padding-top: 0.5em; }
li {
padding: 0;
color: #444;
line-height: 2em;
}
}
p {
padding: 0.25em 0 0.5em;
&:first-of-type { padding-top: 0; }
&:last-of-type {
padding-bottom: 0;
& + ul, & + ol { padding-top: 1em; }
}
}
blockquote {
background: #F3F3F3;
padding: 0.5em;
margin: 0.5em 0;
border: 1px solid #DDD;
}
strong, b { font-weight: bold; }
em, i { font-style: italic; }
code { font-family: 'Inconsolata', monospace; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment