blob: 603e90f41e19fe0240389e4c5463afda2a090990 (
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
|
html, body {
height: 100%;
padding: 0px;
margin: 0px;
overflow: hidden;
}
#overlay {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 1000000;
background-color: rgba(0,0,0,0.85);
text-align: center;
font-family: sans-serif;
}
#overlay p {
color: #ffffee;
}
p.huge {
font-size: 300%;
}
#progress {
font-size: 120%;
}
#main, #map {
height: 100%;
z-index: 0;
display: block;
position: relative;
}
#sidebar {
position: absolute;
background-color: #00f;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
margin: 5px;
padding: 10px;
width: 390px;
left: 7px;
top: 90px;
bottom: 9px;
display: none;
}
|