summaryrefslogtreecommitdiffstats
path: root/sass/tests/resources/css/parent-selector.css
blob: 9c7140e313ff49bdc64bd9b163b122770299e299 (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
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;
}