File: selectors.complex.css

package info (click to toggle)
node-stylus 0.48.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,196 kB
  • ctags: 766
  • sloc: makefile: 38
file content (37 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (6)
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
body form input.hide,
body foo bar,
body .hidden,
body:hover,
body:focus {
  display: none;
}
body form input,
body .hidden {
  display: none;
}
ul > li {
  padding: 5px;
  border: 1px solid #eee;
}
ul > li:first-child,
ul > li:last-child {
  border: none;
}
ul > li:first-child {
  padding-top: 0;
}
ul > li:last-child {
  padding-bottom: 0;
}
body form > input:nth-child(2) {
  border: 1px solid #eee;
}
.foo {
  bar: baz;
}
.foo-2x .bar {
  baz: quux;
}
.foo-3x.foo {
  baz: qux;
}