Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lancejpollard/519792 to your computer and use it in GitHub Desktop.
Save lancejpollard/519792 to your computer and use it in GitHub Desktop.
@mixin shadow($color: #333333) {
-moz-box-shadow: 0px 1px 2px $color;
-webkit-box-shadow: 0px 1px 2px $color;
box-shadow: 0px 1px 2px $color;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='$color')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='$color');
}
.shadow {
@include shadow(#111111);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment