Blame view

src/styles/index.scss 2.04 KB
a72ae217   王富生   第一次提交
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  @import './variables.scss';
  @import './mixin.scss';
  @import './transition.scss';
  @import './element-ui.scss';
  @import './sidebar.scss';
  
  body {
    height: 100%;
    background: #f0f2f5;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  }
  
  label {
    font-weight: 700;
  }
  
  html {
    height: 100%;
    box-sizing: border-box;
  }
  
  #app {
    height: 100%;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  
  a:focus,
  a:active {
    outline: none;
  }
  
  a,
  a:focus,
  a:hover {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
  }
  
  div:focus {
    outline: none;
  }
  
  .clearfix {
    &:after {
      visibility: hidden;
      display: block;
      font-size: 0;
      content: " ";
      clear: both;
      height: 0;
    }
  }
  
  // main-container global css
  .app-container {
    padding: 20px;
  }
  
  p{
    margin: 0;
    padding: 0;
  }
  
  .el-table .cell, .el-table th div, .el-table--border td:first-child .cell, .el-table--border th:first-child .cell {
    padding-left: 15px;
  }
  .el-table thead{
    color: rgba(0, 0, 0, .6);
  }
  
  .el-form-item{
    margin-bottom: 0;
  }
  
  .table-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #FFF;
  }
  
  .table-title {
    color: #99a9bf;
    padding: 15px;
    border-bottom: 1px solid #409EFF;
  }
  
  .el-form-item__error{
    padding-top: 10px;
    padding-left: 15px;
  }
613d2a9c   Andy   add icon
100
101
102
103
104
105
106
  // 自定义 css
  .common-color{
    color: rgb(64, 158, 255);
  }
  .font-size24{
    font-size: 24px;
  }
e4acf226   Andy   add 我的钱包前端页面 table
107
108
109
  .margin-top-24{
    margin-top: 24px;
  }
f53f45e7   Andy   add 我的卡券 账户前端页面 t...
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
  .bgcolor-fff{
    background-color: #fff;
  }
  .boxshadow-4{
    box-shadow:0px 4px 10px 0px rgba(225,227,228,1);
    border-radius:4px;
  }
  .padding-0{
    padding: 0!important;
  }
  .margin-bottom16{
    margin-bottom: 16px;
  }
  .float-left{
    float: left;
  }
  .float-right{
    float: right;
  }
  /*不换行 省略号*/
  .hs-hidden-nowrap{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  //定位
  .pos-rel{
    position: relative;
  }
  .pos-abs{
    position: absolute;
  }
  //鼠标
  .hs-cursor-pointer{
    cursor: pointer;
  }