UNPKG

642 BCSSView Raw
1.test {
2 color: red; }
3 .test > .nested {
4 color: blue;
5 height: 100%; }
6 .test:last-child {
7 border-right: 0; }
8
9.test2 {
10 color: red; }
11 .test2 > .nested {
12 color: green;
13 height: 100%;
14 width: 100%; }
15 .test2:last-child {
16 border-right: 0; }
17
18.test3 {
19 color: red; }
20 .test3 > .nested {
21 color: purple;
22 height: 100%; }
23
24.test4 {
25 color: red; }
26 .test4 > .nested {
27 color: purple;
28 height: 100%;
29 width: 100%; }
30
31.with-var {
32 color: red; }
33 .with-var > .nested {
34 color: blue;
35 height: 100%; }
36 .with-var:last-child {
37 border-right: 0; }
38 .with-var > .var {
39 test: test-var; }