Created
October 26, 2012 08:30
-
-
Save groenewege/3957624 to your computer and use it in GitHub Desktop.
css - embossed
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*="embossed"] { | |
background: #8ec12d; | |
color: #333; | |
text-shadow: 0 1px 1px rgba(255,255,255,0.9); | |
} | |
.embossed-light { | |
border: 1px solid rgba(0,0,0,0.05); | |
box-shadow: inset 0 1px 0 rgba(255,255,255,0.7); | |
} | |
.embossed-heavy { | |
border: 1px solid rgba(0,0,0,0.05); | |
box-shadow: | |
inset 0 2px 3px rgba(255,255,255,0.3), | |
inset 0 -2px 3px rgba(0,0,0,0.3), | |
0 1px 1px rgba(255,255,255,0.9); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment