-
Notifications
You must be signed in to change notification settings - Fork 7
/
map.css
95 lines (86 loc) · 1.28 KB
/
map.css
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
#map {
position:absolute;
top:0;
bottom:0;
width:100%;
}
*/
#map-container {
overflow: hidden;
position: relative;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
#map {
width:100%;
height:100%;
}
/*
#timeslider {
position:absolute;
left: 5%;
width: 90%;
top:10px;
}
*/
.hidden {
display: none;
}
.debug-container {
margin: 20px;
}
#debug-panel {
position:absolute;
left: 10%;
top: 10%;
width: 80%;
height: 90%;
margin: 0;
padding: 0;
background-color: white;
opacity: 0.95;
border: 1px solid black;
border-radius: 15px;
}
#debug-splash {
position:absolute;
left: 10%;
top: 10%;
width: 80%;
height: 90%;
background-color: white;
border: 1px solid black;
border-radius: 15px;
text-align: center;
opacity: 1;
padding-top: 50px;
font-size: 18pt;
}
.debug-close {
position: absolute;
right: 12px;
top: 12px;
width: 24px;
height: 24px;
opacity: 0.3;
}
.debug-close:hover {
opacity: 1;
}
.debug-close:before, .debug-close:after {
position: absolute;
left: 15px;
content: ' ';
height: 25px;
width: 2px;
background-color: #333;
}
.debug-close:before {
transform: rotate(45deg);
}
.debug-close:after {
transform: rotate(-45deg);
}