1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-24 18:52:55 +01:00
site/_src/_assets/styles/bigchain/_toc.scss
Matthias Kretschmann 0d4fb77be5
many readability improvements
* tweak visual hierarchy & spacing
* tweak TOC
* tweak code styles
* new default syntax theme
2017-11-17 14:12:30 +01:00

47 lines
757 B
SCSS

.toc {
&,
ol { counter-reset: item; }
&,
li { padding-left: 0; }
&:before {
@extend .h5;
content: 'Contents';
font-size: $font-size-base;
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;
width: 1rem;
display: inline-block;
}
}
}
// output by Kramdown
/* stylelint-disable selector-no-id */
#markdown-toc,
.section-nav {
@extend .toc;
}
/* stylelint-enable */