-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.wxss
68 lines (65 loc) · 1.15 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
/**app.wxss**/
@import '/assets/iconfont/iconfont.wxss';
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
.container {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
.main-content {
padding: 20rpx 30rpx;
box-sizing: border-box;
}
.desc {
color: #999;
font-size: 12px;
}
.m-btn {
display: inline-block;
padding: 4px 10px;
margin: 0;
line-height: 1;
}
/* 加载占位 */
.loading-block {
width: 100%;
height: 100%;
margin-bottom: 4px;
}
.loading-shink {
position: relative;
overflow: hidden;
color: #f1f1f1 !important;
background: #f1f1f1 !important;
}
.loading-shink::after {
content: '';
width: 20px;
height: 400px;
position: absolute;
top: -50%;
left: 0;
transform: rotate(-15deg);
background: #f6f6f6;
filter: blur(5px);
animation: loading 1s ease infinite;
}
@keyframes loading {
from {
margin-left: 0;
}
to {
margin-left: 150%;
}
}