Skip to content

Instantly share code, notes, and snippets.

@lstebner
Created January 19, 2013 07:15
Show Gist options
  • Save lstebner/4571190 to your computer and use it in GitHub Desktop.
Save lstebner/4571190 to your computer and use it in GitHub Desktop.
//border radius, takes any acceptable border-radius string
.border-radius(@rad){
border-radius: @rad;
-moz-border-radius: @rad;
-webkit-border-radius: @rad;
}
//round top corners
.border-radius-top(@rad){
.border-radius(@rad @rad 0 0);
}
//round right side corners
.border-radius-right(@rad){
.border-radius(0 @rad @rad 0);
}
//round bottom corners
.border-radius-bottom(@rad){
.border-radius(0 0 @rad @rad);
}
//round left side corners
.border-radius-left(@rad){
.border-radius(@rad 0 0 @rad);
}
//for explanation see http://beansandhops.com/post/less-border-radius-mixins
//enjoy!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment