Skip to content

Instantly share code, notes, and snippets.

@djuxed
Created January 4, 2013 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djuxed/4451839 to your computer and use it in GitHub Desktop.
Save djuxed/4451839 to your computer and use it in GitHub Desktop.
Box Shadow
.InnerShadow (@Horizontal: 0, @Vertical: 10px, @Blur: 10px, @Colour: @Orangeshadow) {
-webkit-box-shadow: inset @Horizontal @Vertical @Blur @Colour;
-moz-box-shadow: inset @Horizontal @Vertical @Blur @Colour;
box-shadow: inset @Horizontal @Vertical @Blur @Colour;
}
.BoxShadow (@boxShadow: 0 1px 1px rgba(0,0,0,0.08)) {
-webkit-box-shadow: @boxShadow;
-moz-box-shadow: @boxShadow;
box-shadow: @boxShadow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment