blob: 1aa389f593c7519777c1d2b356a576caf937ec2d (
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
|
a {
font-weight: bold;
text-decoration: none;
}
a .sub {
color: blue;
}
a:hover {
text-decoration: underline;
}
body.firefox a {
font-weight: normal;
}
#main {
color: black;
}
#main a {
font-weight: bold;
}
#main a:hover {
color: red;
}
.mixin-parent:hover {
color: blue;
}
.part.one, .part.two, .part .non-parent {
color: blue;
}
.root .part.one, .root .part .non-parent, .root .part2.one, .root .part2 .non-parent {
color: blue;
}
.root2 .part .one, .root2 .part .non-parent, .root2 .part2 .one, .root2 .part2 .non-parent {
color: blue;
}
|