-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.wxss
65 lines (54 loc) · 1.03 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
/**app.wxss**/
page {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.card {
background-color: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(50px);
width: 85%;
height: auto;
line-height: normal;
padding: 60rpx 0px 60rpx 40rpx;
margin: 10rpx 0px 10rpx;
font-size: 40rpx;
font-weight: bold;
border-radius: 40rpx;
box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.5);
transition: all 0.15s;
}
.card:active {
backdrop-filter: blur(10px);
color: rgb(129, 129, 238);
}
.list {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
padding: 12rpx 0rpx;
}
.bt {
height: 80rpx;
line-height: 80rpx;
background-color: #8181eed0;
color: white;
font-size: 34rpx;
text-align: center;
border-radius: 16rpx;
padding: 0px 20rpx;
transition: 0.15s;
}
.bt:active {
background-color: #8181ee;
}