52 lines
1023 B
CSS
52 lines
1023 B
CSS
.bg-primary {
|
|
background-color: #e6662a !important;
|
|
background-image: linear-gradient(140deg, hsl(19, 79%, 53%) 50%, #ce4711 75%) !important;
|
|
color: white;
|
|
border-color: #ce4711 !important;
|
|
}
|
|
|
|
.btn-secondary,
|
|
.btn-secondary:disabled {
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #e6662a !important;
|
|
color: white;
|
|
border-color: #ce4711 !important;
|
|
}
|
|
|
|
/*navpanel*/
|
|
#leftPanel .nav-link:hover {
|
|
color: #e4e4e4;
|
|
background-color: #20184d;
|
|
}
|
|
|
|
#leftPanel .nav-link {
|
|
background-color: #e4e4e4;
|
|
color: #20184d;
|
|
}
|
|
|
|
input[type="radio"]:checked+label {
|
|
background-color: #e6662a !important;
|
|
color: white !important;
|
|
border-color: #e6662a !important;
|
|
}
|
|
|
|
/*pagination*/
|
|
.page-item,
|
|
.page-link {
|
|
color: #ccc;
|
|
border-color: #ccc
|
|
}
|
|
|
|
.active>.page-link {
|
|
background-color: #e6662a !important;
|
|
color: white !important;
|
|
border-color: #e6662a !important;
|
|
}
|
|
|
|
.page-item:not(.active)>.page-link:hover {
|
|
color: #e6662a !important;
|
|
border-color: #ccc
|
|
} |