Created
October 26, 2012 08:29
-
-
Save groenewege/3957619 to your computer and use it in GitHub Desktop.
css - emphasize
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
div[class*="emphasize-"] { | |
background: #69D2E7; | |
} | |
.emphasize-dark { | |
box-shadow: 0 0 5px 2px rgba(0,0,0,.35) | |
} | |
.emphasize-light { | |
box-shadow: 0 0 0 10px rgba(255,255,255,.25) | |
} | |
.emphasize-inset { | |
box-shadow: inset 0 0 7px 4px rgba(255,255,255,.5) | |
} | |
.emphasize-border { | |
box-shadow: inset 0 0 0 7px rgba(255,255,255,.5) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment