blob: 82ae2be75893b4b533ec80c05ffb01f3f165ccfa (
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
|
@import "colours";
@import "../fixmystreet/layout";
@import "zurich";
body {
color: #3c3c3c;
background-color: #fff;
}
// White background, so no shadow or margin needed.
.content {
color: #3c3c3c;
@include box-shadow(none);
}
.ie6, .ie7, .ie8 {
.content {
border: none;
}
}
#site-header .container {
height: 83px;
background: url(logo_portal.x.jpg) top left repeat-x;
}
body.frontpage #site-logo, #site-logo {
width: 415px;
height: 83px;
background: url(logo_portal.jpg) top left no-repeat;
top: 0;
}
.nav-wrapper {
.nav-wrapper-2 {
border-top: solid 18px white;
}
}
body.mappage {
.nav-wrapper {
.nav-wrapper-2 {
border-top: none;
padding-top: 18px;
background: url(logo_portal.x.jpg) top left repeat-x;
height: 83px;
}
}
}
#main-nav {
ul#main-menu {
li {
a:hover {
background: $primary/1.1;
}
span {
color: $primary_text;
}
}
}
}
body.mappage {
#main-nav ul#main-menu li a,
#main-nav ul#main-menu li span {
padding: 0.75em;
}
#zurich-footer {
display: none;
}
}
body.twothirdswidthpage {
.content {
aside {
@include box-shadow(none);
}
}
}
|