-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfinite-scroll.css
More file actions
66 lines (56 loc) · 851 Bytes
/
infinite-scroll.css
File metadata and controls
66 lines (56 loc) · 851 Bytes
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
html, body {
position: absolute;
height:100%;
width:100%;
margin:0;
padding:0;
}
.outer {
height:100%;
width:100%;
position:relative;
}
.scroller {
position:absolute;
overflow-y: scroll;
width:40%;
height:400px;
margin:auto;
top:0; left:0; bottom: 0; right:0;
}
.block {
width:100%;
margin-left:0;
box-sizing:border-box;
font: bold normal 60px/60px sans-serif;
text-align:center;
vertical-align: middle;
color:#fff;
}
.block:first-child {
}
.block-a {
height: 100px;
line-height:100px;
background-color:#F58657;
}
.block-b {
height: 200px;
line-height:200px;
background-color:#C97F5F;
}
.block-c {
height: 150px;
line-height:150px;
background-color:#A5264A;
}
.block-d {
height: 150px;
line-height:150px;
background-color:#F5B357;
}
.block-e{
height: 100px;
line-height:100px;
background-color:#A5264A;
}