Skip to content

Instantly share code, notes, and snippets.

@quoidautre
Created March 26, 2012 07:15
Show Gist options
  • Save quoidautre/2203640 to your computer and use it in GitHub Desktop.
Save quoidautre/2203640 to your computer and use it in GitHub Desktop.
LESSCSS: Shadow border
.shadow-border(@background-color : #C5EFFD, @left : 3px , @bottom : 3px, @height : 2px ) {
box-shadow: @left @bottom @height @background-color;
-moz-box-shadow: @left @bottom @height @background-color;
-webkit-box-shadow: @left @bottom @height @background-color;
-o-box-shadow: @left @bottom @height @background-color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment