blob: 5b4be5ebc75c1e6064dd50d0af25e070ab90536b (
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
a:link {
color: #0000ff;
}
a:visited {
color: #000099;
}
a:hover, a:active {
color: #ff0000;
}
body {
font-family: "Gill Sans", "Gill Sans MT", Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
margin: 0;
font-size: 175%;
}
h2 {
font-size: 140%;
}
select, input, textarea {
font-size: 99%;
}
#mysociety a.unsuitable-report {
font-size: small;
}
#mysociety blockquote {
border-left: solid 4px #5e552b;
}
#mysociety .a {
color: #000000;
background-color: #f3e5a5;
}
#mysociety #postcodeForm {
background-color: #e3d595;
}
#mysociety #front_stats div {
background-color: #e3d595;
}
#mysociety p.promo {
border-top: 1px solid #bbb;
border-bottom: 1px solid #bbb;
background-color: #eee;
text-align: center;
padding: 0 0.5em;
}
#header {
font-size: 200%;
font-weight: bold;
border-bottom: solid 2px #5e552b;
margin: 0;
padding: 0.15em 0.5em;
background-color: #e3d595;
color: #5e552b;
}
#header a:link, #header a:visited {
color: #5e552b;
background-color: #e3d595;
text-decoration: none;
}
#header a:active, #header a:hover {
text-decoration: underline;
}
#my {
color: #4e451b;
background-color: #e3d595;
}
#mysociety {
width: 100%;
/* Must specify a width or IE goes crazy wrong! */
position: relative;
margin: 0 auto;
max-width: 60em;
}
/* Can't put the margin in #mysociety because of above IE craziness */
#wrapper {
margin: 1em 2em 2em;
}
#meta {
list-style-type: none;
margin: 0.25em 0 0 1em;
padding: 0;
font-size: 0.875em;
}
#meta li {
display: inline;
margin: 0;
padding: 0 0 0 0.25em;
border-left: solid 1px #5e552b;
}
#meta li:first-child {
border-left: none;
}
.v {
display: none;
}
#navigation {
position: absolute;
top: 1em;
right: 1em;
padding: 0;
margin: 0;
list-style-type: none;
}
#navigation li {
display: inline;
padding: 0;
margin: 0;
}
#navigation a {
display: -moz-inline-box;
display: inline-block;
padding: 0.4em 1em;
}
#navigation a:link, #navigation a:visited {
color: #5e552b;
}
#navigation a:hover, #navigation a:active {
background-color: #5e552b;
color: #e3d595;
-moz-border-radius-topleft: 0.5em;
-webkit-border-top-left-radius: 0.5em;
border-radius-top-left: 0.5em;
-moz-border-radius-topright: 0.5em;
-webkit-border-top-right-radius: 0.5em;
border-radius-top-right: 0.5em;
}
#nav_new a {
background-image: url("/i/new.png");
background-repeat: no-repeat;
background-position: 100% 0;
}
#logo {
border: none;
position: absolute;
top: 3.3em;
right: 10px;
}
#footer {
clear: both;
text-align: center;
border-top: solid 2px #e3d595;
width: 50%;
margin: 2em auto 0;
padding: 1em;
}
|