mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-24 18:52:55 +01:00
44 lines
661 B
SCSS
44 lines
661 B
SCSS
|
|
.toc {
|
|
&,
|
|
ol { counter-reset: item; }
|
|
|
|
&,
|
|
li { padding-left: 0; }
|
|
|
|
&:before {
|
|
@extend .h5;
|
|
content: 'Contents';
|
|
display: block;
|
|
margin-top: 0;
|
|
}
|
|
|
|
li,
|
|
ol,
|
|
ul { margin: 0; }
|
|
|
|
li {
|
|
display: block;
|
|
}
|
|
|
|
> li {
|
|
// custom numbers
|
|
&:before {
|
|
content: counters(item, '.') '. ';
|
|
counter-increment: item;
|
|
margin-right: $spacer / 4;
|
|
color: $brand-main-gray-light;
|
|
}
|
|
}
|
|
}
|
|
|
|
// output by Kramdown
|
|
|
|
/* stylelint-disable selector-no-id */
|
|
#markdown-toc,
|
|
.section-nav {
|
|
@extend .toc;
|
|
}
|
|
|
|
/* stylelint-enable */
|