fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
49f25b27e668795a7e8e895f9f8deb67cc93f90a
[wolnelektury.git]
/
src
/
wolnelektury
/
static
/
scss
/
book_text
/
references.scss
1
a.reference.interesting::after {
2
content: "📌";
3
}
4
.no-references .reference.interesting:after {
5
display: none;
6
}
7
8
#reference-box {
9
display: none;
10
width: 300px;
11
position: fixed;
12
top: 0;
13
right: 0;
14
z-index:100;
15
background: #eee;
16
#reference-map {
17
height:400px;
18
width: 300px;
19
@media screen and (max-height: 800px) {
20
height: 300px;
21
}
22
}
23
#reference-images {
24
padding: 10px;
25
white-space: nowrap;
26
overflow-x: auto;
27
a {
28
display: inline-block;
29
vertical-align: middle;
30
margin: 0 10px 0 0;
31
img {
32
margin: 0;
33
height: 100px;
34
}
35
}
36
}
37
#reference-link {
38
display: block;
39
font-size: 1.5em;
40
padding: 10px;
41
}
42
43
#reference-close {
44
font-size: 30px;
45
position: absolute;
46
top: 10px;
47
right: 10px;
48
z-index: 1000;
49
font-family: sans-serif;
50
color: black;
51
}
52
}