mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2024-11-18 22:59:17 +00:00
112 lines
2 KiB
SCSS
112 lines
2 KiB
SCSS
.td-navbar {
|
|
background: $dark;
|
|
min-height: 5rem;
|
|
.navbar-brand__name {
|
|
display: none;
|
|
}
|
|
.nav-link {
|
|
color: $secondary !important;
|
|
font-weight: 600;
|
|
}
|
|
.nav-link:hover, .nav-link.active{
|
|
background-color: #616161;
|
|
border-radius: 5px;
|
|
}
|
|
.td-navbar-nav-scroll {
|
|
height: unset !important;
|
|
margin-top: unset !important;
|
|
.nav-link {
|
|
padding: .5rem 1.5rem;
|
|
}
|
|
.navbar-nav {
|
|
padding-bottom: 0 !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.td-breadcrumbs__single {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.td-sidebar-nav .td-sidebar-link__page,
|
|
ul.ul-2>.td-sidebar-nav__section-title a {
|
|
color: #616161 !important;
|
|
font-weight: 400;
|
|
}
|
|
|
|
ul.ul-2>.td-sidebar-nav__section-title a:hover {
|
|
color: $blue !important;
|
|
}
|
|
|
|
.td-toc {
|
|
ul {
|
|
margin-top: 1rem;
|
|
}
|
|
li {
|
|
display: block;
|
|
padding-bottom: .5rem;
|
|
}
|
|
a {
|
|
display: inline !important;
|
|
}
|
|
}
|
|
|
|
.tab-content {
|
|
.tab-pane {
|
|
border: 1px solid rgba(0, 0, 0, 0.125) !important;
|
|
border-radius: 0px .25rem .25rem .25rem;
|
|
}
|
|
ul li, ol li {
|
|
margin-bottom: unset !important;
|
|
}
|
|
div {
|
|
transition: none;
|
|
}
|
|
.tab-pane {
|
|
max-width: 100% !important;
|
|
}
|
|
}
|
|
|
|
.nav-tabs {
|
|
border: none !important;
|
|
a:not(.active).nav-link:hover {
|
|
background-color: #0d6efd11;
|
|
}
|
|
}
|
|
|
|
.nav-item {
|
|
margin-right: .5rem !important;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
right: 0;
|
|
left: unset;
|
|
padding: 0px;
|
|
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.dropdown-item {
|
|
padding: 0.5rem 1.5rem;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
li:has(input[type="checkbox"]) {
|
|
list-style-type: none;
|
|
}
|
|
|
|
.btn,
|
|
.text-secondary {
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.td-sidebar {
|
|
padding-top: 5rem;
|
|
}
|
|
.td-404 main, .td-main main {
|
|
padding-top: 6.5rem;
|
|
}
|
|
.td-sidebar-toc {
|
|
padding-top: 2.75rem;
|
|
}
|
|
} |