-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathapp.wxss
82 lines (78 loc) · 1.5 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
76
77
78
79
80
81
82
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.page{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family:'Microsoft YaHei', Helvetica, STHeiTi, sans-seri;
font-size: 28rpx;
color: #333;
}
.view-cell{
padding: 25rpx 30rpx;
position: relative;
display: flex;
align-items: center;
background: #fff;
font-size: 30rpx;
}
.view-cell-line::before{
content: " ";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 1px;
border-bottom: 1rpx solid #D9D9D9;
color: #D9D9D9;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.view-cell-primary{
flex: 1;
}
.view-cell-ft{
text-align: right;
color: #888;
}
.view-img{
width: 45rpx;
height: 45rpx;
margin-right: 20rpx;
vertical-align: middle;
}
.view-name{
vertical-align: middle;
}
.view-cell-arrow{
text-align: right;
color: #888;
}
.view-cell-arrow::after {
content: " ";
display: inline-block;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
height:25rpx;
width:25rpx;
border-width: 1px 1px 0 0;
border-color: #888;
border-style: solid;
position: relative;
top: -2px;
top: -1px;
margin-left:30rpx;
}