Created
September 25, 2013 12:47
-
-
Save kublaj/6699118 to your computer and use it in GitHub Desktop.
Box-shadows
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
/* Outer shadow */ | |
.shadow { | |
-moz-box-shadow: 5px 5px 5px #ccc; | |
-webkit-box-shadow: 5px 5px 5px #ccc; | |
box-shadow: 5px 5px 5px #ccc; | |
} | |
/* Inner shadow */ | |
.shadow { | |
-moz-box-shadow:inset 0 0 10px #000000; | |
-webkit-box-shadow:inset 0 0 10px #000000; | |
box-shadow:inset 0 0 10px #000000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment