File: strings.css

package info (click to toggle)
less.js 3.13.0%2Bdfsg-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,020 kB
  • sloc: javascript: 23,275; makefile: 12; perl: 11; sh: 6
file content (55 lines) | stat: -rw-r--r-- 1,107 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#strings {
  background-image: url("http://son-of-a-banana.com");
  quotes: "~" "~";
  content: "#*%:&^,)!.(~*})";
  empty: "";
  brackets: "{" "}";
  escapes: "\"hello\" \\world";
  escapes2: "\"llo";
}
#comments {
  content: "/* hello */ // not-so-secret";
}
#single-quote {
  quotes: "'" "'";
  content: '""#!&""';
  empty: '';
  semi-colon: ';';
}
#escaped {
  filter: DX.Transform.MS.BS.filter(opacity=50);
}
#one-line {
  image: url(http://tooks.com);
}
#crazy {
  image: url(http://), "}", url("http://}");
}
#interpolation {
  url: "http://lesscss.org/dev/image.jpg";
  url2: "http://lesscss.org/image-256.jpg";
  url3: "http://lesscss.org#456";
  url4: "http://lesscss.org/hello";
  url5: "http://lesscss.org/54.4px";
}
.mix-mul-class {
  color: blue;
  color: red;
  color: black;
  color: orange;
}
.watermark {
  family: Univers, Arial, Verdana, San-Serif;
}
#iterated-interpolation .mixin {
  width: 100px;
  weird: 100px;
  width-str: "100px";
  weird-str: "100px";
}
#iterated-interpolation .interpolation-mixin {
  width: 100px;
  weird: 100px;
  width-str: "100px";
  weird-str: "100px";
}