-
Notifications
You must be signed in to change notification settings - Fork 32
/
legend.css
78 lines (63 loc) · 1.08 KB
/
legend.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
html, body {
margin: 0;
padding: 0;
height:100%;
width: 100%;
font-family: Arial, sans-serif;
}
img {
vertical-align: middle;
}
#menu {
float:left;
width: 200px;
height: 100%;
background-color: #EEE;
}
#menu h2 {
margin: 0;
padding: 4px;
font-size: 16px;
color: #27408B;
background-color: #c0c0ff;
text-align: center;
}
#menu ul {
list-style: none;
margin: 0;
padding: 10px 0 0px 0px;
}
#menu ul li {
margin: 0;
padding: 0;
}
#menu ul li b, #menu ul li a {
padding: 4px 0 4px 12px;
}
#menu ul li a {
color: #000;
display: block;
margin: 0 0 0 0;
text-decoration: none;
}
#menu #selected a {
background-color: #CCCCCC;
}
#menu a:hover {
background-color: #AAA;
}
#content {
position:absolute;
top:2px;
left:200px;
clear: both;
margin: 0px 0 0px 20px;
overflow-x: hidden;
}
/* hide sidebar and top navigation */
#content iframe[src*="https://wiki.openseamap"]{
margin-left: -170px;
/* margin-top: -82px; */
width: 710px;
height: 670px;
}