blob: 3856fead50651f2e97b5264d1104d46ad991e0ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
--video-width: 30vw;
}
h1 {
font-style: italic;
color: #373fff;
}
nav, main {
display: flex;
flex-flow: row wrap;
}
main video, main img {
width: var(--video-width);
}
main {
padding-right: 1px;
}
main h2 {
cursor: move;
}
main button.close {
float: right;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
aside#map {
height: 500px;
}
/* from Dragula */
.gu-mirror {
position: fixed !important;
margin: 0 !important;
z-index: 9999 !important;
opacity: 0.8;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter: alpha(opacity=80);
}
.gu-hide {
display: none !important;
}
.gu-unselectable {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.gu-transit {
opacity: 0.2;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
}
|