blob: 70e65d36214d9ea9f0363679d4dfaebd4a55c84b (
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
|
@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;
}
}
.nav-menu--main 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
}
}
#mysoc-logo {
background-position: 6px 10px;
}
|