mirror of
https://github.com/less/less.js.git
synced 2026-01-21 21:27:59 -05:00
17 lines
299 B
CSS
17 lines
299 B
CSS
#strings {
|
|
background-image: url("http://son-of-a-banana.com");
|
|
quotes: "~" "~";
|
|
content: "#*%:&^,)!.(~*})";
|
|
empty: "";
|
|
brackets: "{" "}";
|
|
}
|
|
#comments {
|
|
content: "/* hello */ // not-so-secret";
|
|
}
|
|
#single-quote {
|
|
quotes: "'" "'";
|
|
content: '""#!&""';
|
|
empty: '';
|
|
semi-colon: ';';
|
|
}
|