values.scss in Responsive Menu – Create Mobile-Friendly Menu 3.0.6, at src/app/Mappers/scssphp/tests/inputs/values.scss
| 1 | |
| 2 | #values { |
| 3 | color: #eee; |
| 4 | color: #eeeeee; |
| 5 | height: 20px; |
| 6 | width: 80%; |
| 7 | color: "hello world"; |
| 8 | height: url("http://google.com"); |
| 9 | dads: url(http://leafo.net); |
| 10 | padding: 10px 10px 10px 10px, 3px 3px 3px; |
| 11 | textblock: "This is a \ |
| 12 | multiline block \ |
| 13 | #not { color: #eee;}"; |
| 14 | margin: 4,3,1; |
| 15 | content: "This is a \ |
| 16 | multiline string."; |
| 17 | border-radius: -1px -1px -1px black; |
| 18 | } |
| 19 | |
| 20 | #subtraction { |
| 21 | lit: 10 -11; |
| 22 | lit: 10 - 11; |
| 23 | lit: 10- 11; |
| 24 | lit: 10-11; |
| 25 | |
| 26 | $num: 100; |
| 27 | var: 10 -$num; |
| 28 | var: 10 - $num; |
| 29 | var: 10- $num; |
| 30 | var: 10-$num; |
| 31 | } |
| 32 | |
| 33 | |
| 34 | #special { |
| 35 | a: 12px expression(1 + (3 / Foo.bar("baz" + "bang") + function() {return 12;}) % 12); |
| 36 | } |
| 37 | |
| 38 | #unary { |
| 39 | b: +0.5em; |
| 40 | c: -foo(12px); |
| 41 | d: +foo(12px); |
| 42 | } |
| 43 | |
| 44 |