Files
less.js/test/css/mixins-pattern.css
2010-05-04 20:37:06 -04:00

56 lines
557 B
CSS

.zero {
zero: 0;
one: 1;
two: 2;
three: 3;
}
.one {
zero: 0;
one: 1;
one-req: 1;
two: 2;
three: 3;
}
.two {
zero: 0;
one: 1;
one-req: 1;
two: 2;
three: 3;
}
.three {
zero: 0;
one: 1;
one-req: 1;
two: 2;
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 {
both: 330;
right: 33;
}
.only-left {
both: 330;
left: 33;
}
.left-right {
both: 330;
left: 33;
right: 33;
}