-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathindex.wxss
94 lines (77 loc) · 1.29 KB
/
index.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
@import "../../common/reset.wxss";
@import "../common/index-skyline.wxss";
.weui-agree__link {
display: inline;
color: #576b95;
}
.weui-flex {
align-items: center;
flex-direction: row;
}
.weui-cells {
margin-top: 0;
opacity: 0;
transform: translateY(-50%);
transition: .3s;
border-top: .5px solid rgba(0,0,0,0.1);
}
.weui-cells::before {
display: none;
}
.weui-cells_show {
opacity: 1;
transform: translateY(0);
}
.kind-list__item {
margin: 10px 0;
background-color: #fff;
border-radius: 2px;
overflow: hidden;
}
.kind-list__img {
width: 30px;
height: 30px
}
[data-weui-theme=dark] .kind-list__img {
filter: invert(100) hue-rotate(180deg)
}
.kind-list__item-hd {
padding: 20px;
transition: opacity .3s
}
.kind-list__item-hd_show {
opacity: .4
}
.kind-list__item-bd {
height: 0;
overflow: hidden
}
.kind-list__item-bd_show {
height: auto
}
.index-hd {
padding: 40px 40px 20px;
text-align: center;
}
.index-bd {
padding: 0 15px 20px;
}
.index-ft {
padding-bottom: 10px;
text-align: center;
}
.index-logo {
width: 43px;
height: 43px;
}
.index-desc {
margin-top: 10px;
color: #888888;
font-size: 14px;
}
[data-weui-theme=dark] .weui-agree__link {
color: #7d90a9;
}
[data-weui-theme=dark] .kind-list__item {
background-color: #232323;
}