blob: 6c068b6bdfe48feeb78c243edae96cfec0ccdbf6 (
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
|
/* Generics */
body {
font-family: "Gill Sans", "Gill Sans MT", Helvetica, Arial, sans-serif;
}
h1 {
border-bottom: solid 1px #999999;
margin: 0 0 1em 0;
}
.v { display: none; }
#error {
color: #cc0000;
font-size: larger;
}
/* Site-wide layout */
#container {
margin-left: -12em;
width: 100%;
float: right;
}
#content {
margin-left: 12em;
}
#content > *:first-child {
margin-top: 0;
}
#navigation {
width: 8em;
float: left;
padding: 0 2em 0 0;
margin: 0 0 1em 2em;
}
/* Individual pages */
#map {
border: solid 1px #000000;
width: 500px;
height: 500px;
position: relative;
top: 0;
left: 5em;
overflow: hidden;
}
#drag {
width: 1em;
height: 1em;
position: absolute;
top: 0;
left: 0;
}
#drag input {
position: absolute;
}
#log {
border: solid 1px #ff0000;
padding: 3px;
font-size: 83%;
}
#compass {
float: left;
}
#compass img {
border: 0;
}
|