blob: a7b14c245d10e5d6cd88d3587ca66c1940d1cce0 (
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
|
@import "../sass/h5bp";
@import "./_colours";
@import "../sass/mixins";
@import "../sass/base";
#site-logo {
width: 115px;
height: 51px;
padding: 0.5em 0;
background: url(/cobrands/hounslow/images/logo.gif) 0 50% no-repeat;
background-size: 115px 51px;
}
#postcodeForm .form-hint {
color: $white;
}
#map_box #map {
background-color: white;
}
.btn-primary,
.green-btn,
.btn--primary {
border: none;
background: $green;
&:hover,
&:active {
background: lighten($green, 5%);
}
}
.general-notes {
.box-warning {
font-size: 1.2em;
}
}
|