forked from OpenSeaMap/online_chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap-edit.css
114 lines (101 loc) · 2.11 KB
/
map-edit.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html,body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
font-family: Arial, sans-serif;
}
img {
vertical-align: middle;
}
.sidebar {
padding: 0;
margin: 10px;
z-index:2; /* on top of the map */
position:absolute;
top:40px;
}
.sidebar li {
list-style: none;
}
.sidebar a {
text-decoration:none;
cursor:pointer;
display:block;
margin-bottom:5px;
width:170px;
padding:2px;
-moz-border-radius: 6px; /* still needed for mozilla */
border-radius: 6px; /* css3 */
border-style:solid;
border-width:2px;
border-color:#000080;
color:black;
background-color:white;
text-align:center;
/* opacity */
filter:alpha(opacity=60);
moz-opacity:0.6;
khtml-opacity: 0.6;
opacity: 0.6;
}
.sidebar a:hover {
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity: 1;
opacity: 1;
}
/*
.sidebar a:link { color:#00f; background-color:transparent; }
.sidebar a:visited { color:#00f; background-color:transparent; }
.sidebar a:active { color:white; background-color:transparent; }
*/
.position_center {
position:absolute;
top:50%;
left:50%;
}
.menugroup {
margin-bottom: 5px;
border: 2px solid #000080;
-moz-border-radius: 6px; /* still needed for mozilla */
border-radius: 6px; /* css3 */
background-color: #FFF;
font-size: 18px;
padding: 5px;
margin-top:10px;
text-align:center;
}
.infobox {
margin-bottom: 5px;
border: 2px solid #000080;
-moz-border-radius: 6px; /* still needed for mozilla */
border-radius: 6px; /* css3 */
background-color: #FFF;
font-size: 18px;
padding: 5px;
}
.hidden {
visibility:hidden;
}
.dialog {
margin-bottom: 5px;
border: 2px solid #000080;
-moz-border-radius: 6px; /* still needed for mozilla */
border-radius: 6px; /* css3 */
background-color: #FFF;
padding: 5px;
visibility:hidden;
}
#map {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
#osm {
font-size: 0.7em;
font-style: italic;
margin-bottom: 20px;
}