mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
17 lines
414 B
Plaintext
17 lines
414 B
Plaintext
// LABELS
|
|
// ------
|
|
|
|
.label {
|
|
padding: 1px 3px 2px;
|
|
font-size: @baseFontSize * .75;
|
|
font-weight: bold;
|
|
color: @white;
|
|
text-transform: uppercase;
|
|
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; }
|