summaryrefslogtreecommitdiff
path: root/vendor/leafo/lessphp/tests/outputs/pattern_matching.css
blob: 215371b0abfba9ff33ce34f4975d87ee8490a9ee (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.class {
  color: #a2a2a2;
  display: block;
}
.zero {
  zero: 0;
  one: 1;
  two: 2;
  three: 3;
}
.one {
  one: 1;
  one-req: 1;
  two: 2;
  three: 3;
}
.two {
  two: 2;
  three: 3;
}
.three {
  three-req: 3;
  three: 3;
}
.left {
  left: 1;
}
.right {
  right: 1;
}
.border-right {
  color: black;
  border-right: 4px;
}
.border-left {
  color: black;
  border-left: 4px;
}
.only-right {
  right: 33;
}
.only-left {
  left: 33;
}
.left-right {
  both: 330;
}
#hola {
  color: blue;
}
#defaults_1 {
  height: one;
  height: two;
  height: three;
  height: four;
}
.thing {
  color: red;
}
#aa {
  color: green;
  color: blue;
  color: red;
}
#bb {
  color: green;
  color: blue;
  color: red;
}
#cc {
  color: blue;
}