base.css
796 Bytes
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
* {
margin: 0px;
padding: 0px;
}
html,
body {
height: 100%;
overflow: hidden;
background-color: #fff;
font-size: 14px;
color: #333333;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
input[type="number"] {
appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* element-style */
.el-button--default {
color: #667ffd;
border-color: #667ffd;
}
.el-button--primary {
background-color: #667ffd;
border-color: #667ffd;
}
.el-radio__input.is-checked + .el-radio__label {
color: #667ffd;
}
.el-radio__input.is-checked .el-radio__inner {
border-color: #667ffd;
background: #667ffd;
}
.el-message-box .el-button--default {
color: #fff;
}