Created
August 1, 2012 18:18
-
-
Save mikedijkstra/3229452 to your computer and use it in GitHub Desktop.
Foundation: Box Shadow Helper
This file contains 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
/** | |
* Box Shadow | |
* | |
* @category Foundation | |
* @package Helper | |
* @subpackage BoxShadow | |
*/ | |
.bsis { | |
-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.25); | |
-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.25); | |
box-shadow:inset 0 1px 1px rgba(0,0,0,0.25); | |
} | |
.bsim { | |
-webkit-box-shadow:inset 0 3px 3px rgba(0,0,0,0.25); | |
-moz-box-shadow:inset 0 3px 3px rgba(0,0,0,0.25); | |
box-shadow:inset 0 3px 3px rgba(0,0,0,0.25); | |
} | |
.bsil { | |
-webkit-box-shadow:inset 0 8px 8px rgba(0,0,0,0.25); | |
-moz-box-shadow:inset 0 8px 8px rgba(0,0,0,0.25); | |
box-shadow:inset 0 8px 8px rgba(0,0,0,0.25); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment