e188025afdb6989be5cecd6bebe5bd565ac1d48b
[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
17     img {
18         margin: 0;
19     }
20     
21     #reference-map {
22         height:400px;
23         width: 300px;
24         @media screen and (max-height: 800px) {
25             height: 300px;
26         }
27     }
28     #reference-images {
29         padding: 10px;
30         white-space: nowrap;
31         overflow-x: auto;
32         a {
33             display: inline-block;
34             vertical-align: middle;
35             margin: 0 10px 0 0;
36             img {
37                 height: 100px;
38             }
39         }
40     }
41     #reference-link {
42         display: block;
43         font-size: 1.5em;
44         padding: 10px;
45     }
46
47     #reference-close {
48         font-size: 30px;
49         position: absolute;
50         top: 10px;
51         right: 10px;
52         z-index: 1000;
53         font-family: sans-serif;
54         color: black;
55     }
56 }