-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.wxss
54 lines (44 loc) · 935 Bytes
/
app.wxss
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
/**app.wxss**/
@import './weui.wxss';
page {
background-color: #efefef;
font-family: "PingFangSC-Medium, Arial";
font-size: 16px;
line-height: 1.5;
}
.section {
background: #fff;
border-bottom: 1rpx solid #dedede;
/* margin-bottom: 15rpx; */
padding: 20rpx;
}
.ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
/*特殊按钮*/
button[type=primary], .weui-btn_primary {
position: relative;
color: #fff;
background-color: #ff5801;
}
button[type="primary"][plain] {
color: #ff5801;
border-color: #ff5801;
}
button[type="primary"][disabled], button[loading][type="primary"] {
background-color: #ffa97c;
}
.button-hover[type=primary], .button-hover.weui-btn_primary {
color: rgba(255, 255, 255, 0.8);
background-color: #ee5200;
}
.button-hover[type=primary][plain] {
color: #ee5200;
border-color: #ee5200;
}
.button-sp-area {
margin-top: 15px;
padding: 0 15px;
}