-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.less
82 lines (75 loc) · 1.85 KB
/
index.less
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
.hdz-masonry-list {
position: relative;
flex: auto;
display: flex;
flex-direction: column;
justify-content: stretch;
align-items: stretch;
width: 100%;
height: auto;
overflow: hidden;
background-color: #FFF;
.hdz-masonry-list-container {
width: 100%;
height: auto;
flex: auto;
-webkit-overflow-scrolling: touch;
overflow-anchor: auto;
overflow-x: hidden;
overflow-y: scroll;
.hdz-masonry-list-content {
width: calc(100% - 20px);
height: auto;
min-height: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
padding: 10px;
background: linear-gradient(180deg, #FCFCFD 0%, #F7F8FA 100%);
.hdz-masonry-list-section {
max-width: 50%;
flex: auto;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding: 0 10px;
box-sizing: border-box;
.hdz-masonry-list-section-item {
flex: auto;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
margin-bottom: 20px;
background-color: #FFF;
border-radius: 12px;
overflow: hidden;
.hdz-masonry-list-section-image {
width: 100%;
height: auto;
flex: none;
}
}
}
}
.hdz-masonry-list-footer {
width: 100%;
height: 50px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
background: #F7F8FA;
.hdz-masonry-list-footer-text {
width: 100%;
height: 100%;
font-size: 28px;
color: #DDDDDD;
line-height: 35px;
text-align: center;
}
}
}
}