summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/css/parent-selector.css
blob: 0330782fbfcb7b1829b610443e63821c7da71df5 (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
a {
	font-weight: bold;
	text-decoration: none;
}

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 {
	color: blue;
}