-
Notifications
You must be signed in to change notification settings - Fork 0
/
scroll.css
58 lines (50 loc) · 1.18 KB
/
scroll.css
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
body {
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(1){
background-color: rgb(0, 0, 0);
background-size: cover;
background-attachment: fixed;
background-position: center;
} */
.list:nth-child(2){
background-color: rgb(131, 106, 134);
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.list:nth-child(3){
background-color: #9e8ca0;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.list:nth-child(4){
background-color: #96a87f;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.list:nth-child(5){
background-color: #9dacb3;
background-size: cover;
background-attachment: fixed;
background-position: center;
}