blob: 2a73313f0c3bf9e378a0fccd46f1c7b3a9202686 (
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
|
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;
}
.drop-parent-reference {
color: green;
}
|