Fade out ToC when it's not hovered

This commit is contained in:
Philipp Oppermann
2016-07-28 19:45:35 +02:00
parent 7e2878aba7
commit fda5851e7c

View File

@@ -128,6 +128,12 @@ aside#toc {
margin-left: -15rem;
font-size: 90%;
line-height: 1.2;
opacity: .2;
transition: opacity .5s;
}
aside#toc:hover {
opacity: 1;
}
aside#toc h2 {