File: pure.css

package info (click to toggle)
node-css-loader 6.8.1%2B~cs14.0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,712 kB
  • sloc: javascript: 12,623; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 340 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
.foo {
  color: red;
}

h1 .foo-1 {
  color: green;
}

.foo-2 h1 {
  color: blue;
}

.foo-3 h1 .foo-4 {
  color: red;
}

#foo-5 {
  color: red;
}

h1 #foo-6 {
  color: green;
}

#foo-7 h1 {
  color: blue;
}

#foo-8 h1 #foo-9 {
  color: red;
}

.bar-1 :global(.bar) .bar-2 {
  color: white;
}

.baz-3 :local(.baz) .bar-4 {
  color: black;
}