blob: 3a2f039a83fa1a12eb3f71e938eab37b785f9389 (
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
|
@import "../sass/h5bp";
@import "./_colours";
@import "../sass/mixins";
@import "./_fonts";
@import "../sass/base";
// Hide the standard Harrogate header nav
#site-header {
.site-header__toggles, .site-header__right-info, .main-menu, .site-header__tasks__search-outer, .visually-hidden, .site-header__tasks__fms-nav {
display: none;
}
}
header.site-header {
.site-header__identity__logo svg {
height: 50px;
width: 100px;
}
}
#report-cta {
border-color: #ddd;
color: #000;
&:hover, &:focus {
background-color: #eee;
}
}
.nav-menu--main {
// blue button background, darker if selected
a {
background: #ededed;
}
span {
color: #fff;
background: $primary;
}
}
label[for=form_INFO_TEXT] {
background: yellow;
border: solid 1px black;
padding: 1em;
}
#site-header {
background: none;
}
#council_responsibilities_note {
background-color: $harrogate_blue;
color: white;
padding: 0.5em;
font-size: 0.8em;
a {
color: white;
text-decoration: underline;
}
}
.nycc-notice {
border: solid 1px black;
background: #00539F;
color: white;
padding: 0.5em;
margin-top: 1em;
a {
color: white;
text-decoration: underline;
}
}
a.platform-logo {
vertical-align: baseline;
display: inline-block;
background-position: top left;
background-repeat: no-repeat;
background-size: auto 1.5em;
background-image: url(/cobrands/fixmystreet/images/fms-platform-logo.svg);
text-indent: -1000%;
height: 1.7em;
width: 16em;
padding-#{$right}: 0.25em;
}
footer {
background-color: black;
color: white;
}
|