theread.me/_sass/toc.scss
Mahdi Dibaiee ae6b5b2be7 feat(TOC): Table of Contents
post(typoclassopedia): alternative formulations for Applicative
2017-10-06 18:41:43 +03:30

30 lines
382 B
SCSS

#toc-container {
h2 {
display: inline-block;
}
input, input + span {
margin-left: 1rem;
}
input {
position: absolute;
width: 50px;
height: 20px;
opacity: 0;
margin-top: 10px;
}
input + span::before {
content: '[hide]';
}
input:checked ~ ul {
display: none;
}
input:checked + span::before {
content: '[show]';
}
}