strings.css 813 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #strings {
  2. background-image: url("http://son-of-a-banana.com");
  3. quotes: "~" "~";
  4. content: "#*%:&^,)!.(~*})";
  5. empty: "";
  6. brackets: "{" "}";
  7. escapes: "\"hello\" \\world";
  8. escapes2: "\"llo";
  9. }
  10. #comments {
  11. content: "/* hello */ // not-so-secret";
  12. }
  13. #single-quote {
  14. quotes: "'" "'";
  15. content: '""#!&""';
  16. empty: '';
  17. semi-colon: ';';
  18. }
  19. #escaped {
  20. filter: DX.Transform.MS.BS.filter(opacity=50);
  21. }
  22. #one-line {
  23. image: url(http://tooks.com);
  24. }
  25. #crazy {
  26. image: url(http://), "}", url("http://}");
  27. }
  28. #interpolation {
  29. url: "http://lesscss.org/dev/image.jpg";
  30. url2: "http://lesscss.org/image-256.jpg";
  31. url3: "http://lesscss.org#445566";
  32. url4: "http://lesscss.org/hello";
  33. url5: "http://lesscss.org/54.4px";
  34. }
  35. .mix-mul-class {
  36. color: blue;
  37. color: red;
  38. color: black;
  39. color: orange;
  40. }