blob: 8dfea7acdf4ff6a5fd3dbb32f9ec7b11acecdd42 (
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
|
@import "_colours";
$image-sprite: 'images/sprite.png';
@import "../sass/layout";
body {
.wrapper{
background-color: #fff;
background: url('images/fixmindelo-header.png') 30% 0% repeat-x;
}
#site-logo {
left:8px;
}
}
#main-nav {
ul {
&#main-menu {
li {
a.report-a-problem-btn {
color: #fff;
}
}
}
}
}
body.frontpage {
#site-logo {
width: 370px !important;
height: 70px;
background: url('images/sprite.png') -3px -106px no-repeat;
top: 2em;
left: 1em;
}
.wrapper {
background: url('images/fixmindelo-header.png') 30% 0% repeat-x;
}
#front-main-container {
color: #fff;
#postcodeForm {
border-top: none;
border-bottom: none;
}
}
#front-main {
border-top: 3px solid $mindelo_green;
border-bottom: 3px solid $mindelo_green;
}
}
body.admin {
.container {
width: 94%;
margin: 0 auto;
}
table {
background: white; // force bg colour since it may overhang the colourful background
}
}
#main-nav ul#mysoc-menu li a#mysoc-logo {
background-position: 6px 10px;
}
|