Blame view

node_modules/less/test/css/variables.css 1.29 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  .variables {
    width: 14cm;
  }
  .variable-dash .q {
    padding: 30px 15px;
  }
  .variables {
    height: 24px;
    color: #888;
    font-family: "Trebuchet MS", Verdana, sans-serif;
    quotes: "~" "~";
  }
  .redef {
    zero: 0;
  }
  .redef .inition {
    three: 3;
  }
  .values {
    minus-one: -1;
    font-family: 'Trebuchet', 'Trebuchet', 'Trebuchet';
    color: #888 !important;
    same-color: #888 !important;
    same-again: #888 !important;
    multi-important: #888 #888, 'Trebuchet' !important;
    multi: something 'A', B, C, 'Trebuchet';
  }
  .variable-names .quoted {
    name: 'hello';
  }
  .variable-names .unquoted {
    name: 'hello';
  }
  .variable-names .color-keyword {
    name: 'hello';
  }
  .alpha {
    filter: alpha(opacity=42);
  }
  .testPollution {
    a: 'no-pollution';
  }
  .units {
    width: 1px;
    same-unit-as-previously: 1px;
    square-pixel-divided: 1px;
    odd-unit: 2;
    percentage: 500%;
    pixels: 500px;
    conversion-metric-a: 30mm;
    conversion-metric-b: 3cm;
    conversion-imperial: 3in;
    custom-unit: 420octocats;
    custom-unit-cancelling: 18dogs;
    mix-units: 2px;
    invalid-units: 1px;
  }
  .units .fallback {
    div-px-1: 10px;
    div-px-2: 1px;
    sub-px-1: 12.6px;
    sub-cm-1: 9.666625cm;
    mul-px-1: 19.6px;
    mul-em-1: 19.6em;
    mul-em-2: 196em;
    mul-cm-1: 196cm;
    add-px-1: 15.4px;
    add-px-2: 393.35275591px;
    mul-px-2: 140px;
    mul-px-3: 140px;
  }