Add table of contents #4

Merged
realloc merged 7 commits from a.shamray/dot-hugo:feature/9-table-of-contents into frostfs_design_version 2023-05-29 14:50:52 +00:00
Showing only changes of commit ef08ba9d6d - Show all commits

View file

@ -616,6 +616,11 @@ textarea.form-control {
margin-bottom: 0;
}
.content ol li a:hover,
.content ol li ol a:hover {
text-decoration: underline;
}
.content h3:before,
.content h4:before,
.content h5:before {
@ -627,10 +632,13 @@ textarea.form-control {
.content .title-link {
opacity: 0;
transition: 0.7s;
transition: 0.3s;
margin-left: 10px;
}
.content .title-link.active {
.content h3:hover .title-link,
.content h4:hover .title-link,
.content h5:hover .title-link {
opacity: 1;
}