blob: 7e33d3f1f576360e81d46fb01d3b06e9ac148597 (
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
|
@import "_colours";
@import "../fixmystreet/_layout";
/*
Note: The fact that the below has to override the CSS, though it is for the
default template, is a sign that the CSS is not best organised. It needs
refactoring, and making more maintainable through the use of SMACSS, OOCSS
and similar.
*/
body {
background: $bluey;
}
body.mappage {
.nav-wrapper {
.nav-wrapper-2 {
background: $bluey;
}
}
}
#main-nav {
ul {
li {
a, span {
color: #000;
}
}
&#main-menu {
li {
a:hover {
background: $primary;
}
}
}
}
}
|