mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
16 lines
426 B
Text
16 lines
426 B
Text
// LABELS
|
|
// ------
|
|
|
|
.label {
|
|
padding: 2px 4px 3px;
|
|
font-size: @baseFontSize * .85;
|
|
font-weight: bold;
|
|
color: @white;
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
|
background-color: @grayLight;
|
|
.border-radius(3px);
|
|
}
|
|
.label-important { background-color: @errorText; }
|
|
.label-warning { background-color: @orange; }
|
|
.label-success { background-color: @successText; }
|
|
.label-info { background-color: @infoText; }
|