blob: 768df9208022b6238f9ede56a6c1e9daddba574e (
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
|
body {
}
p {
font-size: 90%;
}
li {
list-style-type: none;
}
h1 {
font-size: 135%;
}
h2 {
font-size: 100%;
font-weight: bold;
}
h3 {
font-size: 100%;
font-weight: normal;
}
span.option {
font-size: 100%;
font-weight: bold;
}
.error {
font-size: 100%;
color: #990000;
}
.head {
max-width: 800px;
}
.selector {
max-width: 800px;
}
.footer {
max-width: 800px;
}
span.warning {
font-size: 80%;
}
.logo {
text-align: center;
margin-top: 1.5em;
}
div.dropdown {
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid black;
position: absolute;
}
div.dropdown div {
background-color: white;
cursor: default;
padding: 0px 3px;
}
div.dropdown div.current {
background-color: #3366cc;
color: white;
}
|