Skip to content

Instantly share code, notes, and snippets.

@trumball
Created September 9, 2013 17:18
Show Gist options
  • Save trumball/6498725 to your computer and use it in GitHub Desktop.
Save trumball/6498725 to your computer and use it in GitHub Desktop.
Box shadow
/* Mixin */
.box-shadow (@x: 0px, @y: 3px, @blur: 5px, @alpha: 0.5) {
-webkit-box-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
-moz-box-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
box-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
}
/* Implementation */
#somediv {
.box-shadow(5px, 5px, 6px, 0.3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment