Spaces:
Sleeping
Sleeping
File size: 729 Bytes
aa7e587 9ab6314 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | :root {
--bslib-sidebar-main-bg: #f8f8f8;
}
.popover {
--bs-popover-header-bg: #222;
--bs-popover-header-color: #fff;
}
.popover .btn-close {
filter: var(--bs-btn-close-white-filter);
}
.card-no-border {
border: none !important;
box-shadow: none !important;
}
body {
font-family: "Source Sans Pro";
font-size: 14px;
}
/* Remove all default tab borders */
.nav-tabs {
border-bottom: 2px grey;
}
.nav-tabs .nav-link {
border: none;
color: #495057;
background: none;
}
/* Active tab */
.nav-tabs .nav-link.active {
color: orange;
border: none;
border-bottom: 2px solid orange;
background: none;
}
/* Optional: hover effect */
.nav-tabs .nav-link:hover {
border: none;
color: orange;
}
|