bifocal/assets/css/tocbot.css

77 lines
1.3 KiB
CSS
Raw Permalink Normal View History

2024-07-31 13:10:37 -04:00
/* Style from Tocbot */
.toc {
overflow-y: auto;
2024-07-31 13:10:37 -04:00
}
a.toc-link {
color: currentColor;
height: 100%;
2024-07-31 13:10:37 -04:00
}
.is-collapsible {
max-height: 1000px;
overflow: hidden;
transition: all 300ms ease-in-out;
2024-07-31 13:10:37 -04:00
}
.is-collapsed {
max-height: 0;
2024-07-31 13:10:37 -04:00
}
.is-position-fixed {
position: fixed !important;
top: 0;
2024-07-31 13:10:37 -04:00
}
.is-active-li {
list-style: disc;
2024-07-31 13:10:37 -04:00
}
/* Style from Ghost Foundation */
.gh-content {
position: relative;
}
.gh-toc > .toc-list {
position: relative;
padding-left: 15.3667px;
2024-07-31 13:10:37 -04:00
}
.toc-list {
overflow: hidden;
list-style: none;
2024-08-02 00:11:17 -04:00
font-size: 16px;
line-height: 1.4;
2024-07-31 13:10:37 -04:00
}
@media (min-width: 1300px) {
.gh-sidebar {
position: absolute;
top: 0;
bottom: 0;
margin-top: 4vmin;
grid-column: wide-start / main-start; /* Place the TOC to the left of the content */
2024-08-02 00:11:17 -04:00
width: 250px;
2024-07-31 13:10:37 -04:00
}
.gh-toc {
position: sticky; /* On larger screens, TOC will stay in the same spot on the page */
top: 4vmin;
}
}
2024-08-02 00:11:17 -04:00
a.toc-link {
text-decoration: none;
color: var(--color-secondary-text);
display: inline-block;
vertical-align: middle;
margin: 0;
font-weight: 700;
2024-08-02 00:11:17 -04:00
}
a.is-active-link {
color: var(--color-primary-text);
2024-07-31 13:10:37 -04:00
}
2024-08-02 00:11:17 -04:00
/* Additional style information from Jean interspersed */