mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
39 lines
675 B
SCSS
39 lines
675 B
SCSS
|
|
.toc {
|
|
&,
|
|
ol { counter-reset: item;}
|
|
|
|
&,
|
|
li { padding-left: 0; }
|
|
|
|
&:before {
|
|
@extend .h1;
|
|
content: "Table Of Contents";
|
|
display: block;
|
|
border-bottom: 1px solid $brand-main-blue-light;
|
|
padding-bottom: $spacer;
|
|
margin-bottom: ($spacer * 2);
|
|
text-align: center;
|
|
}
|
|
|
|
li,
|
|
ol { margin: 0; }
|
|
|
|
li {
|
|
display: block;
|
|
|
|
// custom numbers
|
|
&:before {
|
|
content: counters(item, ".") " ";
|
|
counter-increment: item;
|
|
margin-right: $spacer;
|
|
color: $gray;
|
|
}
|
|
}
|
|
}
|
|
|
|
// output by Kramdown
|
|
#markdown-toc {
|
|
@extend .toc;
|
|
}
|