Created
October 26, 2012 08:13
-
-
Save groenewege/3957577 to your computer and use it in GitHub Desktop.
css - dropshadow
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
.drop-shadow { | |
background: #9479fa; | |
} | |
.drop-shadow.top { | |
box-shadow: 0 -4px 2px -2px rgba(0,0,0,0.4) | |
} | |
.drop-shadow.right { | |
box-shadow: 4px 0 2px -2px rgba(0,0,0,0.4) | |
} | |
.drop-shadow.bottom { | |
box-shadow: 0 4px 2px -2px rgba(0,0,0,0.4) | |
} | |
.drop-shadow.left { | |
box-shadow: -4px 0 2px -2px rgba(0,0,0,0.4) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment