62 lines
823 B
CSS
62 lines
823 B
CSS
a {
|
|
color: #0078D4;
|
|
}
|
|
|
|
a:hover {
|
|
color: #003f6f;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.bg-success {
|
|
background-color: #8BC34A!important;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #0078D4!important;
|
|
}
|
|
|
|
.text-danger {
|
|
color: #D40000!important;
|
|
}
|
|
a.text-danger:focus,
|
|
a.text-danger:hover {
|
|
color: #790000!important;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0078D4;
|
|
border-color: #0078D4;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #4585CF;
|
|
border-color: #4a90e2;
|
|
}
|
|
|
|
.btn-light.focus, .btn-light:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.btn.focus, .btn:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Form */
|
|
.form-control:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Tables */
|
|
.table-striped tbody tr:nth-of-type(odd) {
|
|
background-color: rgba(0, 0, 0, 0.02);
|
|
}
|
|
|
|
.table thead th {
|
|
font-size: 0.8em;
|
|
text-transform: uppercase!important;
|
|
} |