Blame view

node_modules/less/test/less-bom/rulesets.less 516 Bytes
ce4c83ff   wxy   初始提交
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
  #first > .one {
    > #second .two > #deux {
      width: 50%;
      #third {
        &:focus {
          color: black;
          #fifth {
            > #sixth {
              .seventh #eighth {
                + #ninth {
                  color: purple;
                }
              }
            }
          }
        }
        height: 100%;
      }
      #fourth, #five, #six {
        color: #110000;
        .seven, .eight > #nine {
          border: 1px solid black;
        }
        #ten {
          color: red;
        }
      }
    }
    font-size: 2em;
  }