Skip to content

Instantly share code, notes, and snippets.

@DKunin
Created July 15, 2013 05:48
Show Gist options
  • Select an option

  • Save DKunin/5997744 to your computer and use it in GitHub Desktop.

Select an option

Save DKunin/5997744 to your computer and use it in GitHub Desktop.
drop-shadow-mixin
.drop-shadow(@x-axis: 0, @y-axis: 1px, @blur: 2px, @alpha: 0.1) {
-webkit-box-shadow: @x-axis @y-axis @blur rgba(0, 0, 0, @alpha);
-moz-box-shadow: @x-axis @y-axis @blur rgba(0, 0, 0, @alpha);
box-shadow: @x-axis @y-axis @blur rgba(0, 0, 0, @alpha);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment