Skip to content

Instantly share code, notes, and snippets.

@dannycallaghan
Created October 2, 2013 15:23
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 dannycallaghan/6795487 to your computer and use it in GitHub Desktop.
Save dannycallaghan/6795487 to your computer and use it in GitHub Desktop.
/* 5px shadow in every distance, with blur of 5 and spread of 6 */
.foo {
-moz-box-shadow: -5px -5px 5px 6px #888;
-webkit-box-shadow: -5px -5px 5px 6px#888;
box-shadow: -5px -5px 5px 6px #888;
}
/* 5px inner shadow in every distance */
.bar {
-moz-box-shadow: inset 0 0 5px 5px #888;
-webkit-box-shadow: inset 0 0 5px 5px#888;
box-shadow: inset 0 0 5px 5px #888;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment