mixins.less
19 lines
| 289 B
| text/x-less
|
LessCssLexer
Brian E. Granger
|
r10703 | // Mixin CSS classes | ||
.border-box-sizing { | ||||
box-sizing: border-box; | ||||
-moz-box-sizing: border-box; | ||||
-webkit-box-sizing: border-box; | ||||
} | ||||
.corner-all { | ||||
Jonathan Frederic
|
r16912 | border-radius: @border-radius-base; | ||
Matthias BUSSONNIER
|
r13547 | } | ||
Jonathan Frederic
|
r16912 | |||
.border-radius(@radius) { | ||||
border-radius: @radius; | ||||
Jonathan Frederic
|
r16937 | } | ||
.no-padding { | ||||
padding: 0px; | ||||
} | ||||