123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .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;
- }
|