References
[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     }
20     #reference-images {
21         padding: 10px;
22         white-space: nowrap;
23         overflow-x: auto;
24         a {
25             display: inline-block;
26             vertical-align: middle;
27             margin: 0 10px 0 0;
28             img {
29                 margin: 0;
30                 height: 100px;
31             }
32         }
33     }
34     #reference-link {
35         display: block;
36         font-size: 1.5em;
37         padding: 10px;
38     }
39
40     #reference-close {
41         font-size: 30px;
42         position: absolute;
43         top: 10px;
44         right: 10px;
45         z-index: 1000;
46         font-family: sans-serif;
47         color: black;
48     }
49 }