-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
62 lines (62 loc) · 937 Bytes
/
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
/**app.wxss**/
text{
font-family:'Microsoft Yahei';
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.card {
padding: 20rpx;
border-radius: 2px;
/*width: calc(100% - 20px);*/
font-size: 30rpx;
width: 70%;
background: #fff;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
}
@keyframes beat{
0%{
transform: scale(0.8,0.8);
opacity: 1;
}
25%{
transform: scale(1,1);
opacity: 0.8;
}
100%{
transform: scale(0.8,0.8);
opacity: 1;
}
}
@keyframes fadeInDown{
0%{
transform:translateY(-160rpx);
opacity: .2;
}
80%{
transform:translateY(-5rpx);
opacity: .9;
}
100%{
transform:translateY(0);
opacity: 1;
}
}
@keyframes fadeIn{
0%{
opacity: .2;
}
80%{
opacity: .9;
}
100%{
transform:translateY(0);
opacity: 1;
}
}