blob: 6e5c30ced316573bebcacbce2927161ebd2b15ee (
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
|
@import "colours";
@import "../sass/layout";
#site-logo {
margin: 0; // reset the centering we introduced in the mobile view
}
#site-header {
padding-top: 1.25em;
padding-bottom: 1.25em;
}
#front-main {
background-color: $westminster_grey;
padding: 50px 0;
label {
font-size: 18px;
}
h1 {
font-size: 40px;
}
#postcodeForm {
overflow: visible;
margin: 0;
div {
margin: 0;
}
}
#front-main-container {
padding: 0 1em;
}
}
body.mappage {
#site-header {
box-sizing: border-box; // count padding as part of height, so border-bottom is visible
padding-top: 18px; // 1.25em minus 3px, to visually compensate for 3px border-bottom
}
.nav-wrapper {
top: -3px; // to visually compensate for 3px border-bottom on #site-header
}
.westminster-footer {
display: none;
}
}
.nav-menu--main {
li {
color: $westminster_navy;
}
a, span, a:visited {
padding: 0.25em 0.5em;
margin: 0.5em 0.25em;
color: inherit;
font-weight: bold;
}
a {
&:hover,
&:focus {
background: transparent;
color: inherit;
}
}
// Make it look unclickable (because it is).
span.report-a-problem-btn:hover {
color: inherit;
cursor: default;
}
// Make it not look like a button any more.
a.report-a-problem-btn,
a.report-a-problem-btn:hover {
color: inherit;
background: transparent;
padding: 0.25em 0.5em;
margin: 0.5em 0.25em;
}
}
.big-green-banner {
color: $westminster-black;
background: $col_click_map inline-image("../westminster/images/chevron-black-right.svg") $right center no-repeat;
.ie8 & {
background-image: url(/cobrands/westminster/images/chevron-black-right.png);
}
}
.problem-header h1 {
font-weight: bold;
}
.westminster-footer {
text-align: inherit;
}
.westminster-footer-logo {
a {
$image-width: 200px;
$image-height: 49px;
float: right;
margin-top: 70px;
width: $image-width;
padding-top: $image-height;
background-size: $image-width $image-height;
}
}
.westminster-site-links {
margin-top: 0;
li {
margin-bottom: 0.5em;
}
}
.westminster-tertiary-links {
text-align: center;
}
|