Created
January 19, 2013 07:15
-
-
Save lstebner/4571190 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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