Blame view

node_modules/less/test/css/import.css 719 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  @charset "UTF-8";
  /** comment at the top**/
  @import url(/absolute/something.css) screen and (color) and (max-width: 600px);
  @import url("//ha.com/file.css") (min-width: 100px);
  #import-test {
    height: 10px;
    color: red;
    width: 10px;
    height: 30%;
  }
  @media screen and (max-width: 600px) {
    body {
      width: 100%;
    }
  }
  #import {
    color: red;
  }
  .mixin {
    height: 10px;
    color: red;
  }
  .test-f {
    height: 10px;
  }
  .deep-import-url {
    color: red;
  }
  @media screen and (max-width: 601px) {
    #css {
      color: yellow;
    }
  }
  @media screen and (max-width: 602px) {
    body {
      width: 100%;
    }
  }
  @media screen and (max-width: 603px) {
    #css {
      color: yellow;
    }
  }
  @media print {
    body {
      width: 100%;
    }
  }