blob: 7799fa3fdb996d2841ff880079e1181c5a1154e8 (
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
|
@import "_colours";
@import "../sass/layout";
@media only screen and (min-width: 48em) {
.content {
margin-top: 8em;
}
.header-container {
max-width: 60em;
margin: 0 auto;
padding: 0em;
position: relative;
}
body.mappage .content {
margin-top: 14em;
}
#front-main-container {
background-color: $hart_primary;
}
.hart-footer-wrapper {
display: block;
}
}
#report-a-problem-sidebar {
top: 14em;
}
body.twothirdswidthpage .content {
width: 30em;
aside {
left: 672px;
width: 208px;
padding: 16px;
}
.sticky-sidebar {
left: 672px;
aside {
position: fixed;
top: 14em;
}
}
}
|