index.css
1.14 KB
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
.zui-button {
color: #323233;
background-color: #fff;
border: 1px solid #ebedf0;
padding: 5px 15px;
font-size: 14px;
cursor: pointer;
transition: background-color 300ms;
display: flex;
align-items: center;
justify-content: center;
}
.zui-button.sm {
padding: 2px 4px;
font-size: 10px;
}
.zui-button.lg {
padding: 10px 20px;
font-size: 18px;
}
.zui-button:active {
background-color: #e6e6e6;
border-color: #e6e6e6;
}
.zui-button.primary {
background-color: #FCD404;
border-color: #FCD404;
color: #FFF;
}
.zui-button.primary:active {
background-color: #d6ab00;
border-color: #d6ab00;
}
.zui-button.secondary {
background-color: #ffffe6;
border-color: #ffffe6;
color: #FCD404;
}
.zui-button.secondary:active {
background-color: #f7f7df;
border-color: #f7f7df;
}
.zui-button.link {
padding: 5px 15px;
background: inherit;
border: inherit;
color: #FCD404;
}
.zui-button.link:active {
color: #d6ab00;
}
.zui-button.disabled {
border-color: #f5f5f5;
background-color: #f5f5f5;
color: #ccc;
cursor: not-allowed;
}
.zui-button.disabled:active {
border-color: #f5f5f5;
background-color: #f5f5f5;
}