Blame view

node_modules/less/test/css/operations.css 715 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
49
50
  #operations {
    color: #111111;
    color-2: #f8f800;
    height: 9px;
    width: 3em;
    subtraction: 0;
    division: 1;
  }
  #operations .spacing {
    height: 9px;
    width: 3em;
  }
  .with-variables {
    height: 16em;
    width: 24em;
    size: 1cm;
  }
  .with-functions {
    color: #646464;
    color: #ff8080;
    color: #c94a4a;
  }
  .negative {
    height: 0px;
    width: 4px;
  }
  .shorthands {
    padding: -1px 2px 0 -4px;
  }
  .rem-dimensions {
    font-size: 5.5rem;
  }
  .colors {
    color: #123;
    border-color: #334455;
    background-color: #000000;
  }
  .colors .other {
    color: #222222;
    border-color: #222222;
  }
  .negations {
    variable: -4px;
    variable1: 0px;
    variable2: 0px;
    variable3: 8px;
    variable4: 0px;
    paren: -4px;
    paren2: 16px;
  }