-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (67 loc) · 1.51 KB
/
styles.css
File metadata and controls
80 lines (67 loc) · 1.51 KB
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
#mapid { width:1000px; height:500px; }
#mapLinkButton { float:right; width:200px; height:50px;}
#mapLinkArea {width:1000px; height:50px;}
#mapLink {float:left; width:800px; height:50px;}
#map {float:left; width:1000px; height:550px;}
#options {float:left; width:274px; height:671px; background-color: grey;}
#legend {float:left; width:1000px; height:120px; background-color: beige;}
#marker-context-menu {
position:fixed;
z-index:10000;
width:150px;
background:#1b1a1a;
transform:scale(0);
transform-origin:top left;
}
#map-context-menu {
position:fixed;
z-index:10000;
width:150px;
background:#1b1a1a;
transform:scale(0);
transform-origin:top left;
}
#map-context-menu.active {
transform:scale(1);
transition:transform 200ms ease-in-out;
}
#marker-context-menu.active {
transform:scale(1);
transition:transform 200ms ease-in-out;
}
#map-context-menu .item {
padding:8px 10px;
font-size:15px;
color:#eee;
}
#marker-context-menu .item {
padding:8px 10px;
font-size:15px;
color:#eee;
}
#map-context-menu .item:hover {
background:#555;
}
#marker-context-menu .item:hover {
background:#555;
}
#map-context-menu .item i {
display:inline-block;
margin-right:5px;
}
#marker-context-menu .item i {
display:inline-block;
margin-right:5px;
}
#map-context-menu hr {
margin:2px 0px;
border-color:#555;
}
#marker-context-menu hr {
margin:2px 0px;
border-color:#555;
}
#markers {
width:100px;
height:100px;
}