strings.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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#456";
  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. }
  41. .watermark {
  42. family: Univers, Arial, Verdana, San-Serif;
  43. }
  44. #iterated-interpolation .mixin {
  45. width: 100px;
  46. weird: 100px;
  47. width-str: "100px";
  48. weird-str: "100px";
  49. }
  50. #iterated-interpolation .interpolation-mixin {
  51. width: 100px;
  52. weird: 100px;
  53. width-str: "100px";
  54. weird-str: "100px";
  55. }