-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.wxss
More file actions
62 lines (57 loc) · 1.12 KB
/
app.wxss
File metadata and controls
62 lines (57 loc) · 1.12 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
/**app.wxss**/
/*import reset*/
@import "reset.wxss";
body {
height: 100%;
font-size: 14px;
}
.container {
margin-top: 25px;
padding: 0 15px;
}
.text-center {
text-align: center;
}
.icon {
display: inline-block;
width: 96px;
height: 96px;
transform: scale(0.5);
}
.icon-phone {
background-image: url("http://blog.fengdb.com/public/imgs/appspirit.png");
background-position: 0 0;
}
.icon-phone1 {
background-image: url("http://blog.fengdb.com/public/imgs/appspirit.png");
background-position: 0 -112px;
}
.icon-phone2 {
background-image: url("http://blog.fengdb.com/public/imgs/appspirit.png");
background-position: 0 -222px;
}
.icon-phone3 {
background-image: url("http://blog.fengdb.com/public/imgs/appspirit.png");
background-position: 0 -336px;
}
/* 列表 */
.flex-list {
position: relative;
display: flex;
padding: 15px 15px 10px 15px;
}
.flex-list::after {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 1px;
content: '';
background-color: gainsboro;
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.flex-item {
flex: 1;
}