blob: c18574bd59081033f9b55b3f7918400651c0c881 (
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
|
@import "_colours";
@import "../sass/layout";
body.twothirdswidthpage .content .sticky-sidebar aside {
top: 10em;
}
#site-header {
border-top: 7px solid $fuchsia;
}
#site-logo {
width: 208px;
height: 80px;
padding: 24px 0;
background-position: 8px 50%;
background-size: 200px 80px;
}
#front_stats big {
color: $fuchsia_lt;
}
.frontpage {
.nav-menu--main {
margin: 3em 0 0 0;
}
}
.nav-menu--main {
a {
&:hover,
&:active,
&:focus {
color: $text_black;
}
}
a.report-a-problem-btn,
span.report-a-problem-btn,
span {
background-color: $nav_hover_background_colour;
color: $text_black;
border-radius: 0;
&:hover {
color: $fuchsia;
cursor: pointer;
}
}
a[href='/auth'] {
position: absolute;
top: 0;
right: 1em;
.frontpage & {
right: 0;
}
background-color: $fuchsia;
color: $white;
padding: 0 0.75em;
&:hover,
&:active,
&:focus {
color: $white;
}
}
}
.general-notes {
font-size: 0.89em;
}
#key-tools a,button {
font-size: 0.89em;
}
|