blob: 0c52bd5dabf9119831569da311f4f5181f688ef7 (
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
|
@import "../sass/h5bp";
@import "./_colours";
@import "./_fonts";
@import "../sass/mixins";
@import "../sass/base";
@import "../sass/report_list_pins";
body.frontpage #site-logo,
#site-logo
{
background: url("/cobrands/greenwich/logo.gif") 0 0 no-repeat;
background-size: contain;
width: 82px;
height: 40px;
top: 8px;
left: 4px;
}
#nav-link {
background: url('/cobrands/greenwich/tab-red.png') 0 0 no-repeat;
}
#site-header {
background-color: $base_bg;
background: url("/cobrands/greenwich/mastWave.gif") 0 0 no-repeat;
background-size: cover;
}
.item-list--reports__item, #front-main #postcodeForm {
background-color: $greenwich_light_grey;
}
label[for=pc] {
color: $greenwich_dark_red;
}
#front-howto #front_stats {
color: $nav_fg;
}
#greenwich-menu-desktop, #fms-menu-desktop, #greenwich-breadcrumb {
display: none;
}
footer {
ul li {
list-style: none;
}
hr {
padding: 0;
margin: 0 -16px;
height: 4px;
background-color: $greenwich_red;
border: none;
}
}
h1, h2 {
font-style: italic;
}
button, input[type=submit], .btn, .green-btn, button.green-btn, input.green-btn {
border: none;
border-radius: 0;
text-transform: none;
color: white;
background: $greenwich_dark_grey;
border-bottom: solid 4px $greenwich_red;
&:hover {
border: none;
border-bottom: solid 4px lighten($greenwich_red, 5%);
text-decoration: underline;
background: lighten($greenwich_dark_grey, 2%);
}
}
|