summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/css/nesting.css
blob: 2400c73d43c364dc9c8765bd2da487a7642c3d1d (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
.top-bar {
	color: red;
}

.top-bar .alt {
	color: blue;
}

.menu {
	background-color: red;
}

.menu a {
	color: blue;
}

.caption {
	padding: 10px;
}

.caption .text, .caption .header {
	color: green;
}

.footer {
	padding: 10px;
}

.footer .left, .footer .right {
	color: purple;
}

.footer .left a, .footer .right a {
	color: orange;
}

.main {
	color: red;
}

.main .second.third {
	color: blue;
}

.main .second.third .fourth {
	color: black;
}