4762e45cf225b24dc2eb7b322b9520dd4888c214
[wolnelektury.git] / apps / wolnelektury_core / static / scss / book_text / box.scss
1 /* TODO:
2 There should be a JS-less way of seeing at least some of
3 the hidden boxes (TOC and Themes).
4 */
5
6 .box, #toc, #themes, #nota_red {
7     display: none;
8
9     position: fixed;
10     left: 80px;
11     top: 0;
12     bottom: 0;
13     max-width: 380px;
14     padding: 10px;
15     margin: 0;
16     overflow-x: hidden;
17     overflow-y: auto;
18     z-index: 100000;
19
20     color: black;
21     background: white;
22     opacity: .9;
23
24     border-width: 0 2px 2px 0;
25     border-style: solid;
26     border-color: #191919;
27 }