Skip to content

Instantly share code, notes, and snippets.

@Granze
Created March 21, 2012 22:14
Show Gist options
  • Select an option

  • Save Granze/2153736 to your computer and use it in GitHub Desktop.

Select an option

Save Granze/2153736 to your computer and use it in GitHub Desktop.
[LESS] Box shadow
.boxShadow(@x : 2px, @y : 2px, @blur : 5px, @spread : 0, @color : rgba(0,0,0,.6)) {
-webkit-box-shadow: @x @y @blur @spread @color;
-moz-box-shadow: @x @y @blur @spread @color;
box-shadow: @x @y @blur @spread @color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment