Created
September 11, 2010 16:56
-
-
Save vito/575355 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
CSS new (do: { | |
body: { | |
font-family: "Georgia" | |
} | |
header: { | |
font-family: "Arial" | |
h1.red: { | |
color: "red" | |
a#bar: { | |
text-decoration: "none" | |
border-bottom: "1px solid blue" | |
} | |
} | |
} | |
This file contains hidden or 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
body { font-family: Georgia } | |
header { font-family: Arial } | |
header h1.red { color: red } | |
header h1.red a#bar { text-decoration: none; border-bottom: 1px solid blue } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment