Blame view

src/styles/common/base.less 1.38 KB
7fa943eb   梁灏   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  @import "normalize";
  
  * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  *:before,
  *:after {
      box-sizing: border-box;
  }
  
  body {
      font-family: @font-family;
3c01d81a   梁灏   fixed Modal bug,w...
15
      font-size: @font-size-small;
7fa943eb   梁灏   init
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
      line-height: @line-height-base;
      color: @text-color;
      background-color: @body-background;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  
  body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
      margin: 0;
      padding: 0;
  }
  
  button, input, select, textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
  }
  
  ul,
  ol {
      list-style: none;
  }
  
  input::-ms-clear, input::-ms-reveal {
      display: none;
  }
  
  a {
      color: @link-color;
      background: transparent;
      text-decoration: none;
      outline: none;
      cursor: pointer;
e2645048   jingsam   :fire: remove tra...
49
      transition: color @transition-time ease;
7fa943eb   梁灏   init
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  
      &:hover {
          color: @link-hover-color;
      }
  
      &:active {
          color: @link-active-color;
      }
  
      &:active,
      &:hover {
          outline: 0;
          text-decoration: none;
      }
  
      &[disabled] {
          color: #ccc;
3c01d81a   梁灏   fixed Modal bug,w...
67
          cursor: @cursor-disabled;
7fa943eb   梁灏   init
68
69
70
71
72
73
74
75
76
          pointer-events: none;
      }
  }
  
  code,
  kbd,
  pre,
  samp {
      font-family: @code-family;
e2645048   jingsam   :fire: remove tra...
77
  }