hugo-theme-paradox/assets/styles/components/table-of-contents.scss

29 lines
449 B
SCSS
Raw Normal View History

2022-10-16 22:15:34 +00:00
.toc-title {
margin-bottom: 0.5em;
font-weight: 900;
text-transform: uppercase;
color: var(--ui-text-muted);
2022-12-18 14:10:54 +00:00
transition:
color var(--color-crossfade-duration) var(--color-crossfade-ease);
2022-10-16 22:15:34 +00:00
}
#TableOfContents {
ul {
list-style: none;
margin: 0;
}
li {
margin: 0;
line-height: 1.5;
}
li > ul { /* indent subheadings */
margin: 0;
margin-left: 1em;
}
ol {
list-style: none;
margin: 0;
}
li > ol {
margin-left: 1em;
}
}