Template:TOC/styles.css: Difference between revisions

From Space Station 14 Wiki
(wip)
(wip)
Line 3: Line 3:
--toc-margin: .5rem;
--toc-margin: .5rem;
}
}
/* when on tablet or smaller device, disable float and take up the whole width of the page. */
@media (min-width:801px) {
.custom-toc.floating {
float: none;
width: 100%;
margin-left: 0;
margin-right: 0;
}
}


/* hide all links under level 2 header */
/* hide all links under level 2 header */

Revision as of 08:12, 24 August 2024

.custom-toc {
	/* used in the template */
	--toc-margin: .5rem;
}

/* when on tablet or smaller device, disable float and take up the whole width of the page. */
@media (min-width:801px) {
	.custom-toc.floating {
		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;
}