Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Created June 26, 2013 07:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hexodus/5865402 to your computer and use it in GitHub Desktop.
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
/* 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