-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscroll.css
More file actions
52 lines (45 loc) · 990 Bytes
/
Copy pathscroll.css
File metadata and controls
52 lines (45 loc) · 990 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
body {
margin: 0;
overflow: hidden;
font-family: 'Roboto Slab', serif;
}
/* Scroll down */
#container{
width:100%;
height:100vh;
overflow: auto;
scroll-behavior: smooth;
scroll-snap-type: y mandatory;
}
.list{
width:100%;
height:100vh;
display: flex;
justify-content: center;
align-items: center;
scroll-snap-align: center;
}
.list:nth-child(2){
background-color: #4e5a56;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.list:nth-child(3){
background-color: #9d949e;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.list:nth-child(4){
background-color: #e0d8cc;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.list:nth-child(5){
background-color: #b39db3;
background-size: cover;
background-attachment: fixed;
background-position: center;
}