File: property-accessors.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 (49 lines) | stat: -rw-r--r-- 663 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
.block_1 {
  color: red;
  background-color: red;
  width: 50px;
  height: 25px;
  border: 1px solid #ff3333;
  content: "red";
  prop: red;
}
.block_1:hover {
  background-color: green;
  color: green;
}
.block_1 .one {
  background: red;
}
.block_2 {
  color: red;
  color: blue;
}
.block_2 .two {
  background-color: blue;
}
.block_3 {
  color: red;
  color: yellow;
  color: blue;
}
.block_3 .three {
  background-color: blue;
}
.block_4 {
  color: red;
  color: blue;
  color: yellow;
}
.block_4 .four {
  background-color: yellow;
}
a {
  background-color: red, foo;
}
ab {
  background: red, foo;
}
.value_as_property {
  prop1: color;
  color: #FF0000;
}