Experiments with new reader.
[wolnelektury.git] / apps / wolnelektury_core / static / scss / book_text / settings.scss
1 @mixin switch-on {
2     background: #aaa;
3 }
4 @mixin switch-off {
5     background: none;
6 }
7 .settings-switch {
8     display: block;
9     padding: .5em;
10     margin: .5em;
11     border: 1px solid #aaa;
12     border-radius: 1em;
13 }
14
15 nav #menu-settings {
16     display: none;
17 }
18
19 #settings-annotations {@include switch-on;}
20 .no-annotations {
21     #settings-annotations {@include switch-off;}
22     .annotation {display: none;}
23 }
24
25 #settings-themes {@include switch-on;}
26 .always-hide-themes {
27     #settings-themes {@include switch-off;}
28 }
29
30 #settings-line-numbers {@include switch-on;}
31 .always-hide-line-numbers {
32     #settings-line-numbers {@include switch-off;}
33 }
34
35