mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
17 lines
403 B
Text
17 lines
403 B
Text
|
// LABELS
|
||
|
// ------
|
||
|
|
||
|
.label {
|
||
|
padding: 1px 3px 2px;
|
||
|
font-size: @baseFontSize * .75;
|
||
|
font-weight: bold;
|
||
|
color: @white;
|
||
|
text-transform: uppercase;
|
||
|
background-color: @grayLight;
|
||
|
.border-radius(3px);
|
||
|
&.important { background-color: #c43c35; }
|
||
|
&.warning { background-color: @orange; }
|
||
|
&.success { background-color: @green; }
|
||
|
&.notice { background-color: lighten(@blue, 25%); }
|
||
|
}
|