blob: 62486ab35eefb3b18413d0e03cd02603128e890e (
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
|
@import "_colours";
@import "../sass/layout";
body.twothirdswidthpage .content .sticky-sidebar aside {
top: 10em;
}
#site-logo {
padding: 1em 0;
}
body.frontpage #front-main {
text-align: left;
background-color: #fff;
border-top: 1px solid #e9e9e9;
color: $primary_b;
padding: 2.5em 0;
}
#front-main {
#postcodeForm div {
margin: 0;
}
h1 {
font-size: 3em;
}
h2 {
font-weight: normal;
font-size: 1.5em;
}
a#geolocate_link {
color: $link-color;
&:hover,
&:active,
&:focus {
color: $link-hover-color;
}
}
}
#postcodeForm .form-hint {
color: $grey;
}
#main-nav {
min-height: 84px;
}
body.mappage #site-header {
height: 84px;
}
#map_box,
#map_sidebar {
top: 84px;
}
// Stop visited nav links being purple when hovering over them
.nav-menu--main {
a:hover {
color: $primary_text;
}
span {
color: $primary_b;
}
a.report-a-problem-btn {
background-color: transparent;
color: $grey;
padding: 0.75em;
margin: 0;
border-radius: 0;
&:hover,
&:active,
&:focus {
background-color: $nav_hover_background_colour;
color: #fff;
}
}
span.report-a-problem-btn {
&:hover,
&:active,
&:focus {
color: $primary_b;
}
}
}
.pboro-footer {
li {
display: inline-block;
}
li:first-child {
border: none;
}
}
|