blob: 6a777708f7a68f0d229446d175b2779e32861db4 (
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
@import "_colours";
@import "../fixmystreet/_layout";
// So that map appears underneath the header
.wrapper {
position: relative;
}
.ie6, .ie7 {
.wrapper {
padding-top: 1em;
}
}
#front-main {
background: $primary;
@include border-radius(1em 1em 0 0);
margin-bottom: 1em;
padding-top: 0;
// layout sets this because base has it slightly lighter
h2 {
color: $primary_text;
}
}
#front_intro {
float: left;
margin-right: 3em;
}
#front_recent {
margin-left: 3em;
}
body.fullwidthpage {
.content {
width: 52em;
}
}
.ie6 {
body.fullwidthpage {
#front-main {
margin-top: -4em;
}
#front-howto,
#front-recently {
width: 26em;
}
.container {
padding: 0;
}
.content {
margin-left: 0px;
width: 55em;
}
div.img {
margin-top: -3.3em;
}
}
}
body.twothirdswidthpage {
.content {
.sticky-sidebar {
aside {
top: 25em;
}
}
}
}
.nav-wrapper {
display: none;
}
.mappage {
.content {
margin-top: 6em;
}
#breadcrumb {
margin-left: 0px;
}
}
.frontpage .content {
margin: 0;
@include box-shadow(none);
}
.ie6, .ie7, .ie8 {
.frontpage .content {
border: none;
}
}
#content .container h1 {
border-bottom: none;
font-size: 2em;
margin-bottom: 0.5em;
}
.shadow-wrap {
position: static;
padding-top: 0;
margin-bottom: 1em;
ul#key-tools {
border-top: none;
border-bottom: 1px solid $primary;
}
ul#key-tools.singleton {
li a {
padding-right: 4em;
}
}
}
#content h1.big-green-banner {
font-size: 1.4em;
margin-left: -2em;
background: #e1e3e4 url(/cobrands/fixmystreet/images/sprite.png) right -2192px no-repeat
}
/* barnet styles */
.clear {
clear: both;
}
.container {
padding: 0 1em;
}
#site-header,
#site-logo {
display: none !important;
}
#report-a-problem-sidebar {
left: 30em;
top: 7em;
}
.ie6 {
#report-a-problem-sidebar {
left: 30em;
}
}
.general-sidebar-notes {
left: 30.2em;
p {
margin-bottom: 0 !important;
}
}
#front-howto #front_stats div big,
ol.big-numbers > li::before {
color: #C0E8E8;
}
|