Skip to content

Instantly share code, notes, and snippets.

@lisaq
Created July 16, 2014 00:04
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 lisaq/8161cd789cb83d6ca751 to your computer and use it in GitHub Desktop.
Save lisaq/8161cd789cb83d6ca751 to your computer and use it in GitHub Desktop.
LESS mixin for a simple 3d inset box
/* makes a 3d inset box */
.inset-box-shadow {
-webkit-box-shadow: inset 2px 2px 2px #999;
-moz-box-shadow: inset 2px 2px 2px #999;
box-shadow: inset 2px 2px 2px #999;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment