[docs] provide means to have collapsible code blocks without adding a new theme

This commit is contained in:
srmo
2017-10-15 11:59:37 +02:00
parent a1e0f0ba95
commit f361092ed9
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
.toggle {
padding-bottom: 1em ;
}
.toggle .header {
display: block;
clear: both;
cursor: pointer;
}
.toggle .header:after {
content: " ▼";
}
.toggle .header.open:after {
content: " ▲";
}