vendor/leafo/lessphp/tests/outputs/arity.css (view raw)
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 |
.one {
hello: one;
world: one;
}
.two {
hello: two;
world: two;
}
.three {
hello: three;
world: three;
}
.multi-foo {
foo: two cool;
foo: three cool yeah;
foo: two 1;
foo: three 1 yeah;
foo: three 1 1;
}
.multi-baz {
baz: two cool;
baz: three yeah;
baz: two 1;
baz: three 1;
}
|