File: input.scss

package info (click to toggle)
sass-spec 3.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 82,856 kB
  • ctags: 215
  • sloc: ruby: 1,622; perl: 428; sh: 88; makefile: 35
file content (38 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (30)
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
div {
  span {
    color: red;
    background: blue;
  }
}

div {
  color: gray;
  empty {
    span {
      color: red;
      background: blue;
    }
  }
}

empty1 {
  empty2 {
    div {
      blah: blah;
    }
  }
}

empty1 {
  empty2 {
    div {
      bloo: blee;
      empty3 {
        span {
          blah: blah;
          blah: blah;
        }
      }
    }
  }
}