blob: 7132f33abe415cb952d0bed772673f4bbad1b060 (
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
|
@import "../sass/h5bp";
@import "./_colours";
@import "../sass/mixins";
@import "../sass/base";
div.form-error, p.form-error { // TODO Add to more, make a variable.
background-color: $red;
}
/* Font overrides */
#front-main h2 {
font-style: normal;
}
/* .form-control has this already, make sure buttons etc caught too */
input {
font-family: inherit;
}
/* Size */
body {
font-size: 1.125em;
}
small {
font-size: 0.89em;
}
.meta-2 {
font-size: 0.89em;
}
#key-tools a,button {
font-size: 0.89em;
}
.btn--small {
font-size: 0.89em;
}
.mobile-map-banner {
font-size: 0.89em;
}
#front-main a#geolocate_link {
font-size: 0.89em;
}
#front_stats div {
font-size: 0.89em;
}
.description_tips ul {
font-size: 0.89em;
line-height: 1.4;
}
.report-list-filters {
font-size: 0.89em;
.form-control {
font-size: 1em;
}
}
.multi-select-menuitem, .multi-select-button {
font-size: 1em;
}
/* Colour overrides */
.description_tips .do {
color: $col_button_hover;
}
.description_tips .dont {
color: $red;
}
a,
.fake-link {
&:focus {
color: $link-focus-color;
}
}
.btn-primary,
.green-btn,
.btn--primary {
border: none;
background: $col_button;
&:focus,
&:hover,
&:active {
background: $col_button_hover;
}
}
ol.big-numbers > li:before {
color: $fuchsia_lt;
}
/* Header */
#site-logo {
width: 150px;
height: 60px;
padding: 1em 0;
background: url(/cobrands/bexley/images/logo.png) 0 50% no-repeat;
background-size: 150px 60px;
}
#postcodeForm .form-hint {
// color: $white;
}
|