I love Twitter Bootstrap 2.0 - I love how it\'s such a complete library... but I want to make a global modification for a very boxy-not-round site, which is to get rid of al
.btn { border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; }
Or define a mixin and include it wherever you want an unrounded button.
@mixin btn-round-none { border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; } .btn.btn_1 { @inlude btn-round-none }