forked from ecitlm/wx-nba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
110 lines (89 loc) · 1.96 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.left {
float: left;
}
.right {
float: right;
}
.padding-lrtb-30 {
padding: 30rpx !important;
}
.padding-lr-30 {
padding: 0 30rpx !important;
}
.text-right {
text-align: right
}
.no-data {
padding: 100rpx 30rpx;
text-align: center;
width: 100%;
box-sizing: border-box;
font-size: 28rpx;
}
.icon-nothing {
background: url(https://coding.it919.cn/static/images/no-data.png) center no-repeat;
width: 120rpx;
height: 120rpx;
margin: 0 auto;
margin-bottom: 20rpx;
}
.footer {
position: fixed;
width: 100%;
bottom: 0;
background: #f5f5f5;
display: flex;
}
.footer .foot-item {
float: left;
font-size: 24rpx;
text-align: center;
padding: 8rpx 0;
flex: 1;
}
.visibility {
width: 100%;
height: 110rpx;
}
.icon-ball {
background: url(https://coding.it919.cn/static/images/ball.png) center no-repeat;
}
.active .icon-ball-active {
background: url(https://coding.it919.cn/static/images/ball-active.png) center no-repeat;
}
.icon-news {
background: url(https://coding.it919.cn/static/images/news.png) center no-repeat;
}
.active .icon-news-active {
background: url(https://coding.it919.cn/static/images/news-active.png) center no-repeat;
}
.icon-rank {
background: url(https://coding.it919.cn/static/images/rank.png) center no-repeat;
}
.active .icon-rank-active {
background: url(https://coding.it919.cn/static/images/rank-active.png) center no-repeat;
}
.footer .active {
color: #00AA98;
}
.icon-about {
background: url(https://coding.it919.cn/static/images/about.png) center no-repeat;
}
.footer .icon {
padding: 25rpx;
background-size: 40rpx 40rpx !important;
}
footer navigator:active,
footer navigator:kink {
background: #f5f5f5
}