Skip to content

Instantly share code, notes, and snippets.

@sadaco
Created January 17, 2012 00:10
Show Gist options
  • Select an option

  • Save sadaco/1623742 to your computer and use it in GitHub Desktop.

Select an option

Save sadaco/1623742 to your computer and use it in GitHub Desktop.
Custom border radius
.border-radius-custom (@topleft: 3px, @topright: 3px, @bottomleft: 3px, @bottomright: 3px) {
-webkit-border-radius: @topleft @topright @bottomright @bottomleft;
-moz-border-radius: @topleft @topright @bottomright @bottomleft;
border-radius: @topleft @topright @bottomright @bottomleft;
}
#menubg {
.border-radius-custom(3px, 0, 3px, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment