Template:TOC/styles.css: Difference between revisions
From Space Station 14 Wiki
(wip) |
(wip) |
||
Line 2: | Line 2: | ||
/* used in the template */ | /* used in the template */ | ||
--toc-margin: .5rem; | --toc-margin: .5rem; | ||
} | |||
.custom-toc.float-left { | |||
float: left; | |||
margin-right: var(--toc-margin); | |||
} | |||
.custom-toc.float-right { | |||
float: right; | |||
margin-left: var(--toc-margin); | |||
} | } | ||
/* when on tablet or smaller device, disable float and take up the whole width of the page. */ | /* when on tablet or smaller device, disable float and take up the whole width of the page. */ | ||
@media (min-width:801px) { | @media (min-width:801px) { | ||
.custom-toc. | .custom-toc.float-left, | ||
.custom-toc.float-right { | |||
float: none; | float: none; | ||
width: 100%; | width: 100%; |
Revision as of 08:20, 24 August 2024
.custom-toc {
/* used in the template */
--toc-margin: .5rem;
}
.custom-toc.float-left {
float: left;
margin-right: var(--toc-margin);
}
.custom-toc.float-right {
float: right;
margin-left: var(--toc-margin);
}
/* when on tablet or smaller device, disable float and take up the whole width of the page. */
@media (min-width:801px) {
.custom-toc.float-left,
.custom-toc.float-right {
float: none;
width: 100%;
margin-left: 0;
margin-right: 0;
}
}
/* hide all links under level 2 header */
.custom-toc.toclimit-2 .toclevel-1 ul,
/* hide all links under level 3 header */
.custom-toc.toclimit-3 .toclevel-2 ul,
/* hide all links under level 4 header */
.custom-toc.toclimit-4 .toclevel-3 ul,
/* hide all links under level 5 header */
.custom-toc.toclimit-5 .toclevel-4 ul {
display: none;
}