File: mixins-pattern.css

package info (click to toggle)
less.js 1.6.3~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,220 kB
  • ctags: 1,015
  • sloc: sh: 122; makefile: 63; perl: 11
file content (47 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (9)
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
.zero {
  variadic: true;
  zero: 0;
  one: 1;
  two: 2;
  three: 3;
}
.one {
  variadic: true;
  one: 1;
  one-req: 1;
  two: 2;
  three: 3;
}
.two {
  variadic: true;
  two: 2;
  three: 3;
}
.three {
  variadic: true;
  three-req: 3;
  three: 3;
}
.left {
  left: 1;
}
.right {
  right: 1;
}
.border-right {
  color: black;
  border-right: 4px;
}
.border-left {
  color: black;
  border-left: 4px;
}
.only-right {
  right: 33;
}
.only-left {
  left: 33;
}
.left-right {
  both: 330;
}