Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
163 changes: 0 additions & 163 deletions assets/scss/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,169 +4,6 @@ Styles to override the theme.

*/

.td-navbar {
max-width: 1280px;
background: #132f48;
}


.td-navbar .navbar-brand svg {
margin: -8px 10px 0;
}

li.nav-item {
margin-bottom: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
color: #fff;
line-height: 65px;
margin-bottom: 0;
padding: 0 10px;
}

.dropdown-toggle::after {
position: relative;
/* top: 3pt; Uncomment this to lower the icons as requested in comments*/
content: "";
display: inline-block;
/* By using an em scale, the arrows will size with the font */
width: 0.5em;
height: 0.5em;
border-top: 0 none;
border-left: 0 none;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transform: rotate(45deg);
margin-left: 0.5rem
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 16em;
padding: 0 0 1rem;
margin: 0;
font-size: 1rem;
color: #fff;
text-align: left;
list-style: none;
background-color: rgba(19, 47, 72, 0.9);
background-clip: padding-box;
border: 0px solid transparent;
border-radius: 0;
box-shadow: none;
backdrop-filter: blur(4px);
}

.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus {
display: block;
width: 100%;
padding: 0.5rem 1.5rem;
clear: both;
font-weight: 400;
color: #fff;
text-align: inherit;
white-space: nowrap;
background-color: transparent;
border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
text-decoration:underline;
background: transparent;
}

.dropdown-menu[data-bs-popper]{
margin-top: 0;
}

@media (max-width: 992px) {
.navbar-nav .nav-item{
display:none;
}
}

.header-social-wrap a {
text-decoration: none;
}

@media (min-width: 992px) {
body>header {
position: fixed;
top: 0;
width: 100%;
background: rgba(19, 47, 72, 0.9);
z-index:1000;
min-height: 65px;
backdrop-filter: blur(4px);
}
.td-navbar {
position:relative;
margin: 0 auto;
padding-left: 5px;
padding-right: 5px;
background:transparent;
min-height: 65px;
padding-top:0;
padding-bottom:0;
}
.td-navbar-nav-scroll{
width: 100%;
}

.td-navbar .navbar-brand svg {
width: 30px;
margin: -8px 10px 0 0;
height: auto;
}
.td-navbar .navbar-brand span.font-weight-bold {
display:inline-block;
vertical-align: 1px;
font-size:18px;
}

.td-sidebar {
padding-top: 75px;
background-color: #e9ecf0;
padding-right: 1rem;
border-right: 1px solid #dee2e6;
}

.td-sidebar-toc {
border-left: 1px solid $border-color;

@supports (position: sticky) {
position: sticky;
top: 75px;
height: calc(100vh - 85px);
overflow-y: auto;
}
order: 2;
padding-top: 5px;
padding-bottom: 1.5rem;
vertical-align: top;
}


.header-social-wrap {
height: 65px;
display: flex;
margin-left: auto;
align-items: center;
margin-bottom: 0;
}
}




footer.bg-dark {
Expand Down
Loading