button.wxss
839 字节
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
/* components/button.wxss */
/* pages/couponDetail/couponDetail.wxss */
.btn {
width: 85%;
height: 80rpx;
border-radius: 40rpx;
font-size: 32rpx;
font-weight: 400;
display: block;
margin: 0 auto;
}
.btn::after {
border: none;
}
.btn-solid {
background-color: #FF7F00;
color: #fff !important;
}
.btn-line {
background-color: #fff !important;
border: 1px solid #FF7F00;
color: #FF7F00;
}
.btn[disabled] {
background-color: rgba(255, 127, 0, 0.4) !important;
border-color: rgba(255, 127, 0, 0.4) !important;
color: #FFF !important;
}
.green-theme {
background-color: #47BB01;
border-color: #47BB01;
color: #47BB01;
}
.blue-theme {
background-color: #409eff;
border-color: #409eff;
color: #409eff;
}
.danger-theme {
background-color: #f56c6c;
border-color: #f56c6c;
color: #f56c6c;
}