fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Experiments with new reader.
[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
}