rhymix/common/vendor/leafo/lessphp/tests/outputs/math.css
Kijin Sung 5fff6b6eab Move all composer files inside the common directory
- 2022년 3월 개발팀 결정사항 적용
- 모듈 등 서드파티 자료 개발시 composer를 사용하면 상위 경로에 있는 코어의
  composer.json을 수정하고, 코어의 vendor 디렉토리를 건드리는 것이 기본값임
- 이를 방지하기 위해 코어의 composer.json과 vendor를 common 디렉토리 안으로
  이동하여, 모듈 경로에서 상위 폴더로 인식하지 않도록 함
2022-12-26 16:33:32 +09:00

69 lines
928 B
CSS

.unary {
sub: 10 -5;
}
.spaces {
sub1: 5;
sub2: 5;
add1: 15;
add2: 15;
div: 2;
mul1: 50;
mul2: 50;
}
.supress-division {
border-radius: 10px/10px;
border-radius: 10px/12px;
border-radius: hello(10px/10px) world;
font: 10px/30 sans-serif;
font: 10px/20px sans-serif;
font: 10px/22px sans-serif;
border-radius: 0 15px 15px 15px/0 50% 50% 50%;
}
.parens {
sub: 5;
add: 15;
div1: 2;
div2: 2;
mul: 50;
}
.keyword-names {
height: "hello" 25;
}
.negation {
neg1: -1px;
neg2: -1px;
neg3: -10;
}
.test {
single1: 5;
single2: 10;
single3: 10;
parens: 10 -2;
math1: 20;
math2: 20;
complex1: 71;
complex2: 6;
complex3: 6px 1em 2px 2;
var1: 8 4 4 4px;
var2: 96;
var3: 12;
complex4: 113;
}
.percents {
p1: 1000%;
p2: 1000%;
p3: 100%;
p4: 1000px;
p5: 1000%;
p6: 30%;
p7: 10%;
p8: 2%;
}
.misc {
x: 40px;
y: 40em;
}
.cond {
c1: false;
c2: true;
}