-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscroll.css
More file actions
47 lines (47 loc) · 803 Bytes
/
scroll.css
File metadata and controls
47 lines (47 loc) · 803 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
body,html{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.scroll-wrapper{
width: 100%;
height: 100%;
position: relative;
margin: 0;
padding: 0;
}
.scroll-wrapper section{
width: 100%;
height: 100%;
}
#pagination{
position: absolute;
top: 50%;
right: 10px;
margin: 0;
padding: 0;
list-style: none;
z-index: 10;
}
#pagination li{
width: 15px;
height: 15px;
text-align: center;
line-height: 15px;
}
#pagination li a{
width: 5px;
height: 5px;
display: inline-block;
border-radius: 10px;
background-color: #000;
}
#pagination li a.active{
width: inherit;
height: inherit;
background-color: rgba(0,0,0,.1);
border: 1px #000 solid;
border-radius: 15px;
}