blob: d3ec521f5bf135adbfec7c5b3454f79197b2778a (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
@import "_colours";
@import "../sass/layout";
@import "_harrogate_header";
@import "_harrogate_header_overrides";
body.fullwidthpage, body.twothirdswidthpage, body.authpage, body.frontpage {
#main-nav {
display: none;
}
.nav-wrapper .nav-wrapper-2 {
height: 0;
min-height: 0;
border-top: none;
}
#site-header {
height: auto;
.site-header__tasks__fms-nav {
display: block;
.container {
min-height: 0;
}
ul {
float: none;
text-align: center;
margin: 1em 0 0;
li {
display: inline-block;
float: none;
}
}
}
.nav-menu--header {
float: none;
}
}
.content .sticky-sidebar aside {
top: 18em;
}
}
body.mappage {
#main-nav {
display: block;
}
#site-header {
.site-header__tasks__search-outer, .site-header__toggles, .site-header__right-info, {
display: none;
}
.site-header__identity__logo a {
position: absolute;
left: 5px;
top: 0;
height: 61px;
width: 134px;
}
}
.nav-wrapper .nav-wrapper-2 {
background-color: transparent;
}
}
#front-main {
background: transparent;
color: black;
#front-main-container {
border: 4px solid $harrogate_yellow;
padding: 1em;
}
}
footer {
padding: 2em 0;
font-size: 0.9em;
.site-footer__heading {
display: none;
}
.item-list--inline {
border: none;
margin: 0;
padding: 1em 0;
.item-list__item {
display: inline;
list-style: none;
background-color: transparent;
margin: 0;
padding: 0 1.25em 0 0;
a {
color: white;
&:hover {
text-decoration: underline;
}
}
}
}
}
footer .container, #site-header .container {
max-width: 1280px;
width: 100%;
}
@media screen and (min-width: 1280px) {
footer .container, #site-header .container {
width: 1280px;
}
}
|