forked from chemzqm/scroll-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
36 lines (36 loc) · 766 Bytes
/
style.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
.scroll-select-container {
height: 100%;
overflow: hidden;
font-size: 20px;
line-height: 30px;
position: relative;
}
.scroll-select-container ul{
padding: 60px 0;
}
.scroll-select-container .scroll-select {
margin: 0px;
}
.scroll-select li {
user-select: none;
padding: 0px;
list-style: none;
text-align: center;
padding: 0 5px;
}
.scroll-select-container .scroll-select-top {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 60px;
background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0.6))
}
.scroll-select-container .scroll-select-bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60px;
background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0.6))
}