File "values.scss"
Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/leafo/scssphp/tests/inputs/values.scss
File
size: 750 B (750 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
#values {
color: #eee;
color: #eeeeee;
height: 20px;
width: 80%;
color: "hello world";
height: url("http://google.com");
dads: url(http://leafo.net);
padding: 10px 10px 10px 10px, 3px 3px 3px;
textblock: "This is a \
multiline block \
#not { color: #eee;}";
margin: 4,3,1;
content: "This is a \
multiline string.";
border-radius: -1px -1px -1px black;
}
#subtraction {
lit: 10 -11;
lit: 10 - 11;
lit: 10- 11;
lit: 10-11;
$num: 100;
var: 10 -$num;
var: 10 - $num;
var: 10- $num;
var: 10-$num;
}
#special {
a: 12px expression(1 + (3 / Foo.bar("baz" + "bang") + function() {return 12;}) % 12);
}
#unary {
b: +0.5em;
c: -foo(12px);
d: +foo(12px);
}