-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
75 lines (62 loc) · 1.02 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import 'assets/css/icon.wxss';
page {
font-family: -apple-system-font,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",sans-serif;
font-size: 32rpx;
background-color: #252525;
color: #FFF;
}
view {
box-sizing: border-box;
}
.container {
padding-left: 40rpx;
padding-right: 40rpx;
}
input {
border-radius: 8rpx;
padding: 16rpx 0;
border: 0;
}
.tx__c {
text-align: center;
}
.btn__linkface {
width: 100%;
background-color: #FF7927;
color: #FFFFFF;
border-radius: 8rpx;
line-height: 90rpx;
font-size: 28rpx;
font-weight: normal;
}
.btn__linkface.disabled {
background-color: #424242;
color: #999;
}
.fullfill {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.centered {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.fill-horizontal {
width: 100%;
}
.fill-vertical {
width: 100%;
}
.icon-success {
color: #7ED321;
vertical-align: top;
}
.icon-fail {
color: #FF615D;
vertical-align: top;
}