Created
June 26, 2013 07:20
-
-
Save Hexodus/5865402 to your computer and use it in GitHub Desktop.
Inner shadow produces nice soft darkened edges not unlike photoshop inner shadow layer style
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
/* x-pos, y-pos*, blur, spread, #color */ | |
.box_shadow { | |
-webkit-box-shadow: inset 0px 0px 10px 0px #222; /* WebKit */ | |
-moz-box-shadow: inset 0px 0px 10px 0px #222; /* Firefox */ | |
box-shadow: inset 0px 0px 10px 0px #222; /* Standard */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment