Created
August 19, 2011 10:11
-
-
Save anthonyshort/1156513 to your computer and use it in GitHub Desktop.
CSS Copy Class
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
/* Define styles for blocks of content scoped within the .copy rather than | |
making them global. Global styles will be constantly overridden. */ | |
@mixin text-copy { | |
@include improve-text-rendering; | |
/* | |
Set the baseline on all elements directly inside a copy block | |
Margin won't work on inline elements anyway | |
*/ | |
& > * { | |
margin:0 0 $baseline 0; | |
} | |
/* Block Elements | |
---------------------------------------- */ | |
p { | |
} | |
address { | |
} | |
/* Lists | |
---------------------------------------- */ | |
ul { | |
li { | |
list-style-type:disc; | |
} | |
} | |
ol { | |
li { | |
list-style-type:decimal; | |
} | |
} | |
li { | |
display:list-item; | |
} | |
dl { | |
} | |
dt { | |
} | |
dd { | |
} | |
/* Code Blocks | |
---------------------------------------- */ | |
pre { | |
} | |
code { | |
} | |
/* Headings | |
---------------------------------------- */ | |
h1,h2,h3,h4,h5,h6 { | |
} | |
h1 { | |
} | |
h2 { | |
} | |
h3 { | |
} | |
h4 { | |
} | |
h5 { | |
} | |
h6 { | |
} | |
/* Inline Elements | |
---------------------------------------- */ | |
em { | |
font-style:italic; | |
} | |
strong { | |
font-weight:bold; | |
} | |
mark { | |
background:yellow; | |
} | |
ins { | |
background:green; | |
} | |
del { | |
background:red; | |
} | |
abbr { | |
} | |
code { | |
} | |
/* Links | |
---------------------------------------- */ | |
a { | |
font-weight:bold; | |
text-decoration:underline; | |
} | |
a:visited { | |
} | |
a:hover { | |
} | |
} | |
.copy { | |
@include text-copy; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment