blob: f81ac2d59a999572c5764db8dd2a398d31389b99 (
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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/* Generics */
body {
font-family: "Gill Sans", "Gill Sans MT", Helvetica, Arial, sans-serif;
margin: 0;
padding: 1em;
}
h1 {
border-bottom: solid 2px #999999;
margin: 0;
}
a {
color: #0000ff;
}
a:hover, a:active {
color: #ff0000;
}
.v { display: none; }
#error {
color: #cc0000;
font-size: larger;
}
ul#error {
color: #cc0000;
background-color: #ffeeee;
margin:0;
padding: 0 0 0 1.5em;
border: solid 1px #cc0000;
}
/* Site-wide layout */
#navigation {
position: absolute;
top: 2em;
right: 1em;
padding: 0.5em;
background-color: #eeeeee;
border: solid 2px #999999;
margin: 0;
list-style-type: none;
}
#navigation li {
float: right;
padding: 0 0.5em;
}
/* Forms */
label {
float: left;
text-align: right;
padding-right: 0.5em;
width: 5em;
}
fieldset {
border: none;
padding: 0.5em;
}
fieldset div {
margin-top: 2px;
}
fieldset div.checkbox {
padding-left: 5.5em;
}
fieldset div.checkbox label {
float: none;
text-align: left;
padding-right: 0;
width: auto;
}
/* Individual pages */
#map {
border: solid 1px #000000;
width: 508px;
height: 508px;
position: relative;
top: 0;
overflow: hidden;
float: right;
}
#content {
margin-right: 530px;
}
/*#drag {
width: 1em;
height: 1em;
position: absolute;
top: 0;
left: 0;
}
*/
#map input {
position: absolute;
cursor: crosshair;
}
#log {
border: solid 1px #ff0000;
padding: 3px;
font-size: 83%;
}
#compass {
float: right;
margin: 0 1em 1em;
}
#compass img {
border: 0;
}
#relativediv {
position: relative;
}
ul#current img {
position: absolute;
border: none;
}
|