dragon_fire/www/static/styles/toc.css
2025-01-16 23:28:37 +01:00

62 lines
No EOL
1,012 B
CSS

.table_of_contents {
position: sticky;
float: left;
top: 0px;
width: calc(var(--content-margin) - 2em);
margin-left: 2em;
padding-top: 0.8em;
padding-right: 0.5em;
padding-bottom: 0.5em;
border-radius: 0 0em 0em 0.5em;
box-shadow: -0.2em 0.2em 0.2em black;
--toc-fg: #cecece;
--toc-bg: #EE901544;
background-color: var(--bg_2);
& a {
display: inline-block;
transition: all 0.5s !important;
line-height: 1em;
text-align: justify;
font-size: 0.9rem;
padding-left: 0.2em;
padding-right: 0.2em;
padding-bottom: 0.2em;
color: var(--toc-fg) !important;
}
& .active {
background-color: var(--toc-bg);
border-bottom: 1px solid var(--highlight_1);
transition: all 0.2s;
}
& ol {
padding-left: 0.5em;
list-style: none;
}
& li {
border-radius: 0.2em;
border-bottom: 1px solid transparent;
margin-bottom: 0.2em;
transition: all 1s;
}
}