blob: ad5c6580b060d8dbc1332ddc2ea588c402093451 (
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
|
@import "_colours";
@import "../sass/layout";
body {
background-image: linear-gradient(to bottom, $white, #f3f3f3);
}
footer {
margin-top: 0; // So no sign of above gradient at bottom above footer
}
#site-header + .container {
background-color: $white;
}
body.frontpage .content {
margin: 0 -1em;
}
#front-main {
background-color: transparent;
padding: 0;
}
#front-main-container {
background-color: $white;
padding: 1em;
}
#front-main #postcodeForm div {
margin: 0;
width: 30em;
}
a#geolocate_link {
margin-top: 1em;
}
.ce-footer {
ul {
display: flex;
justify-content: space-between;
}
li {
margin: 0;
}
}
body.mappage {
#site-header {
box-sizing: border-box; // count padding as part of height, so border-bottom is visible
}
.ce-footer {
display: none;
}
}
.general-notes {
font-size: inherit;
}
/*body.twothirdswidthpage .content .sticky-sidebar aside {
top: 10em;
}
*/
/*
#site-logo {
width: 208px;
height: 80px;
padding: 24px 0;
background-position: 8px 50%;
background-size: 200px 80px;
}
*/
#front_stats big {
color: $green;
}
|