blob: 0cb3232087f2130cd0d805b974f8dd479bdcc4f7 (
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
|
html, body {
height: 100%;
overflow: hidden;
}
#map {
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
}
body {
margin:0;
padding:0px;
font:14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color:#00B7FF;
}
#sidebar {
top: 5px;
left: 5px;
z-index: 2;
width: 350px;
height: 250px;
max-height: 250px;
overflow: auto;
position: relative;
float: left;
background-color: lightgrey;
border-radius: 10px;
}
#point {
background-color: #0CC5EA;
width: 90%;
margin-left: auto;
margin-right: auto;
padding: 5px;
border-radius: 10px;
}
#close-btn {
background-color: red;
position: absolute;
right: 5px;
bottom: 5px;
border-radius: 10px;
width: 100px;
}
h1 {
text-align: center;
}
|