aboutsummaryrefslogtreecommitdiff
path: root/less/labels.less
blob: 06dc7f3c0028e383836c1754983dcc903f865027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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: @errorText; }
  &.warning   { background-color: @orange; }
  &.success   { background-color: @successText; }
  &.info      { background-color: @infoText; }
}