blob: 0b59469fa87b98ea290d595ca883736ad3927193 (
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
|
@import "../sass/h5bp";
@import "./_colours";
@import "../sass/mixins";
@import "../sass/base";
@import "pattern-lib/header";
@import "pattern-lib/navigation";
@import "pattern-lib/footer";
// Header
#site-header {
// Performs same function as #global-header-bar
border-bottom: solid 5px $bathnes-primary;
}
.header-logo img {
vertical-align: baseline;
}
#report-cta {
right: 7em;
top: 1.65em;
transform: none;
background-color: #f4f4f4;
border-color: #d8d8d8 #d1d1d1 #bababa;
}
.navigation-trigger {
// Style guide has a button, we have a link
border-color: #d8d8d8 #d1d1d1 #bababa;
border-style: solid;
border-width: 1px;
line-height: normal;
&:visited {
color: #000;
}
&:hover, &:active {
text-decoration: none;
}
}
.navigation-primary-list {
// Navigation at bottom on mobile
display: none;
}
// Footer
.footer-list {
// Cancel out default styling
margin-left: 0;
margin-bottom: 0;
}
// Front page
#front-main {
h1 {
font-size: 1.7em;
}
h2 {
margin: 0;
font-size: 1.1em;
}
}
#front-main #postcodeForm {
margin-top: 1em;
label {
color: #fff;
}
}
|