aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/css/parent-selector.css
blob: 32f8484457aba1f6a64c3485075535fa97923361 (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
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;
}