1/* Nots Template specific tools */
2
3
4/**
5 * CSS only toggle mechanism
6 */
7input.notos-toggle {
8    display: none;
9
10    & ~ * {
11        display: none !important;
12    }
13
14    &:checked + * {
15        display: inherit !important;
16    }
17}
18label.notos-toggle {
19    cursor: pointer;
20}
21
22
23