Skip to content

Instantly share code, notes, and snippets.

@mikedijkstra
Created August 1, 2012 18:18
Show Gist options
  • Save mikedijkstra/3229452 to your computer and use it in GitHub Desktop.
Save mikedijkstra/3229452 to your computer and use it in GitHub Desktop.
Foundation: Box Shadow Helper
/**
* 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