288 lines
6.5 KiB
CSS
288 lines
6.5 KiB
CSS
|
|
/*------------------------------------
|
|
- COLOR primary
|
|
------------------------------------*/
|
|
.alert-primary {
|
|
color: #000000;
|
|
background-color: #07a9ff;
|
|
border-color: #009ef1;
|
|
}
|
|
|
|
.alert-primary hr {
|
|
border-top-color: #008dd8;
|
|
}
|
|
|
|
.alert-primary .alert-link {
|
|
color: #000000;
|
|
}
|
|
|
|
.badge-primary {
|
|
color: #fff;
|
|
background-color: #00263A;
|
|
}
|
|
|
|
.badge-primary[href]:hover, .badge-primary[href]:focus {
|
|
color: #fff;
|
|
background-color: #ff0407;
|
|
}
|
|
|
|
.bg-primary {
|
|
background-color: #00263A !important;
|
|
}
|
|
|
|
a.bg-primary:hover, a.bg-primary:focus,
|
|
button.bg-primary:hover,
|
|
button.bg-primary:focus {
|
|
background-color: #ff0407 !important;
|
|
}
|
|
|
|
.border-primary {
|
|
border-color: #00263A !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
color: #fff;
|
|
background-color: #00263A;
|
|
border-color: #00263A;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
color: #fff;
|
|
background-color: #000e16;
|
|
border-color: #ff0407;
|
|
}
|
|
|
|
.btn-primary:focus, .btn-primary.focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 38, 58, 0.5);
|
|
}
|
|
|
|
.btn-primary.disabled, .btn-primary:disabled {
|
|
color: #fff;
|
|
background-color: #00263A;
|
|
border-color: #00263A;
|
|
}
|
|
|
|
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
|
|
color: #fff;
|
|
background-color: #ff0407;
|
|
border-color: #000000;
|
|
}
|
|
|
|
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 38, 58, 0.5);
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
color: #00263A;
|
|
background-color: transparent;
|
|
border-color: #00263A;
|
|
}
|
|
|
|
.btn-outline-primary:hover {
|
|
color: #fff;
|
|
background-color: #00263A;
|
|
border-color: #00263A;
|
|
}
|
|
|
|
.btn-outline-primary:focus, .btn-outline-primary.focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 38, 58, 0.5);
|
|
}
|
|
|
|
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
|
|
color: #00263A;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
|
|
color: #fff;
|
|
background-color: #00263A;
|
|
border-color: #00263A;
|
|
}
|
|
|
|
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 38, 58, 0.5);
|
|
}
|
|
|
|
.list-group-item-primary {
|
|
color: #000000;
|
|
background-color: #009ef1;
|
|
}
|
|
|
|
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
|
|
color: #000000;
|
|
background-color: #008dd8;
|
|
}
|
|
|
|
.list-group-item-primary.list-group-item-action.active {
|
|
color: #fff;
|
|
background-color: #000000;
|
|
border-color: #000000;
|
|
}
|
|
|
|
.table-primary,
|
|
.table-primary > th,
|
|
.table-primary > td {
|
|
background-color: #009ef1;
|
|
}
|
|
|
|
.table-hover .table-primary:hover {
|
|
background-color: #008dd8;
|
|
}
|
|
|
|
.table-hover .table-primary:hover > td,
|
|
.table-hover .table-primary:hover > th {
|
|
background-color: #008dd8;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #00263A !important;
|
|
}
|
|
|
|
a.text-primary:hover, a.text-primary:focus {
|
|
color: #ff0407 !important;
|
|
}
|
|
|
|
|
|
/*------------------------------------
|
|
- COLOR secondary
|
|
------------------------------------*/
|
|
.alert-secondary {
|
|
color: #73130d;
|
|
background-color: #f9d0ce;
|
|
border-color: #f7bfbc;
|
|
}
|
|
|
|
.alert-secondary hr {
|
|
border-top-color: #f4a9a5;
|
|
}
|
|
|
|
.alert-secondary .alert-link {
|
|
color: #460b08;
|
|
}
|
|
|
|
.badge-secondary {
|
|
color: #fff;
|
|
background-color: #E1251B;
|
|
}
|
|
|
|
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
|
|
color: #fff;
|
|
background-color: #b31d15;
|
|
}
|
|
|
|
.bg-secondary {
|
|
background-color: #E1251B !important;
|
|
}
|
|
|
|
a.bg-secondary:hover, a.bg-secondary:focus,
|
|
button.bg-secondary:hover,
|
|
button.bg-secondary:focus {
|
|
background-color: #b31d15 !important;
|
|
}
|
|
|
|
.border-secondary {
|
|
border-color: #E1251B !important;
|
|
}
|
|
|
|
.btn-secondary {
|
|
color: #fff;
|
|
background-color: #E1251B;
|
|
border-color: #E1251B;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
color: #fff;
|
|
background-color: #c11f17;
|
|
border-color: #b31d15;
|
|
}
|
|
|
|
.btn-secondary:focus, .btn-secondary.focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(225, 37, 27, 0.5);
|
|
}
|
|
|
|
.btn-secondary.disabled, .btn-secondary:disabled {
|
|
color: #fff;
|
|
background-color: #E1251B;
|
|
border-color: #E1251B;
|
|
}
|
|
|
|
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
|
|
color: #fff;
|
|
background-color: #b31d15;
|
|
border-color: #a51b13;
|
|
}
|
|
|
|
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(225, 37, 27, 0.5);
|
|
}
|
|
|
|
.btn-outline-secondary {
|
|
color: #E1251B;
|
|
background-color: transparent;
|
|
border-color: #E1251B;
|
|
}
|
|
|
|
.btn-outline-secondary:hover {
|
|
color: #fff;
|
|
background-color: #E1251B;
|
|
border-color: #E1251B;
|
|
}
|
|
|
|
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(225, 37, 27, 0.5);
|
|
}
|
|
|
|
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
|
|
color: #E1251B;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
|
|
color: #fff;
|
|
background-color: #E1251B;
|
|
border-color: #E1251B;
|
|
}
|
|
|
|
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(225, 37, 27, 0.5);
|
|
}
|
|
|
|
.list-group-item-secondary {
|
|
color: #73130d;
|
|
background-color: #f7bfbc;
|
|
}
|
|
|
|
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
|
|
color: #73130d;
|
|
background-color: #f4a9a5;
|
|
}
|
|
|
|
.list-group-item-secondary.list-group-item-action.active {
|
|
color: #fff;
|
|
background-color: #73130d;
|
|
border-color: #73130d;
|
|
}
|
|
|
|
.table-secondary,
|
|
.table-secondary > th,
|
|
.table-secondary > td {
|
|
background-color: #f7bfbc;
|
|
}
|
|
|
|
.table-hover .table-secondary:hover {
|
|
background-color: #f4a9a5;
|
|
}
|
|
|
|
.table-hover .table-secondary:hover > td,
|
|
.table-hover .table-secondary:hover > th {
|
|
background-color: #f4a9a5;
|
|
}
|
|
|
|
.text-secondary {
|
|
color: #E1251B !important;
|
|
}
|
|
|
|
a.text-secondary:hover, a.text-secondary:focus {
|
|
color: #b31d15 !important;
|
|
}
|