blob: fdf3524cd16cefae935b03cd9c47a4e310854da1 (
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
|
@import "_colours";
@import "../sass/layout";
#site-logo {
padding: 0.9em 0;
width: 313px;
height: 51px;
background-size: 313px 51px;
}
#front-main {
// background: transparent;
// color: inherit;
padding: 3em 0;
h1 {
font-size: 3em;
line-height: 1.3;
margin-bottom: 0.1em;
}
#front-main-container {
padding: 0 1em;
max-width: $container-max-width;
}
#postcodeForm {
margin-right: 0;
overflow: visible;
div {
width: auto;
max-width: 38em;
margin-left: 0;
margin-right: 0;
input#pc {
max-width: none;
}
}
label {
margin: 1.5em 0 0.5em 0;
}
}
}
.site-footer__section {
@include box-sizing(border-box);
float: left;
padding: 0 1em;
width: 25%;
&:first-child {
@include flex-container();
@include flex-direction(column);
@include justify-content(space-between);
}
&:nth-child(2) {
width: 50%;
}
}
|