Created
July 16, 2014 00:04
-
-
Save lisaq/8161cd789cb83d6ca751 to your computer and use it in GitHub Desktop.
LESS mixin for a simple 3d inset box
This file contains hidden or 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
/* 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