2021-04-15 01:37:18 -07:00
|
|
|
@import "variables.scss";
|
|
|
|
@import "mixins.scss";
|
|
|
|
@import "margin.scss";
|
|
|
|
|
|
|
|
$toc-border-color: $code-border-color;
|
|
|
|
|
|
|
|
.table-of-contents {
|
|
|
|
@include margin-content;
|
|
|
|
@include margin-content-left;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
|
|
|
margin-bottom: 1rem;
|
2023-01-01 14:32:21 -08:00
|
|
|
text-align: left;
|
2021-04-15 01:37:18 -07:00
|
|
|
|
|
|
|
em {
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#TableOfContents > ul {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 2rem;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding: 0;
|
2023-01-01 14:32:21 -08:00
|
|
|
white-space: normal;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
text-indent: -0.5rem;
|
2021-04-15 01:37:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
div.wrapper {
|
|
|
|
@include bordered-block;
|
|
|
|
padding: 1rem;
|
2023-03-11 11:52:49 -08:00
|
|
|
background-color: var(--code-color);
|
2021-04-15 01:37:18 -07:00
|
|
|
border-color: $toc-border-color;
|
|
|
|
box-sizing: border-box;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|