39 lines
No EOL
727 B
CSS
39 lines
No EOL
727 B
CSS
.label {
|
|
padding: 2px 4px 3px;
|
|
font-size: 11.049999999999999px;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
background-color: #999999;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.label:hover {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
.label-important {
|
|
background-color: #b94a48;
|
|
}
|
|
.label-important:hover {
|
|
background-color: #953b39;
|
|
}
|
|
.label-warning {
|
|
background-color: #f89406;
|
|
}
|
|
.label-warning:hover {
|
|
background-color: #c67605;
|
|
}
|
|
.label-success {
|
|
background-color: #468847;
|
|
}
|
|
.label-success:hover {
|
|
background-color: #356635;
|
|
}
|
|
.label-info {
|
|
background-color: #3a87ad;
|
|
}
|
|
.label-info:hover {
|
|
background-color: #2d6987;
|
|
} |