Skip to content

Instantly share code, notes, and snippets.

@kublaj
Created September 25, 2013 12:47
Show Gist options
  • Save kublaj/6699118 to your computer and use it in GitHub Desktop.
Save kublaj/6699118 to your computer and use it in GitHub Desktop.
Box-shadows
/* 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