blob: 0760c982c4ac8156c1478fb5c20eac8e069f48b2 (
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
|
$map_width: 420px;
$background: #E9EEF7;
$darker: #768EB5;
#mysociety {
// Smaller map
#map_box {
width: $map_width + 2px;
}
#map, #drag {
width: $map_width;
height: $map_width;
}
p#fixed, p#unknown {
margin-right: $map_width + 22px;
width: auto;
}
#problem_form {
clear: both;
}
// Generics
h1 {
margin: 0;
font-size: 175%;
}
h2 {
font-size: 140%;
}
select, input, textarea {
font-size: 99%;
}
a.unsuitable-report {
font-size: small;
}
blockquote {
border-left: solid 4px $darker;
}
.a {
color: #000000;
background-color: $background;
}
#postcodeForm {
background-color: $background;
}
#front_stats div {
background-color: $background;
width: 6em;
padding: 0.5em;
}
}
|