blob: ecc6fb4367d24412059d7fbe03169aa5e8c6b220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Labels & Progress-bar */
.label{
padding: 10px 13px;
border-radius: 2px;
font-weight: 500;
font-size: 11px;
text-transform: uppercase;
display: inline-block;
}
.label-primary{
background-color: #3472F7;
}
.label-info{
background-color: #2CA8FF;
}
.label-success{
background-color: #05AE0E;
}
.label-warning{
background-color: #FF9500;
}
.label-danger{
background-color: #FF3B30;
}
|