-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscroll.css
More file actions
53 lines (47 loc) · 998 Bytes
/
scroll.css
File metadata and controls
53 lines (47 loc) · 998 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
.plugin-scroll-left {
position: absolute;
left: 0;
height: 51px;
width: 51px;
z-index: 99;
cursor: pointer;
background: url(img/btn.png) left bottom no-repeat;
}
.plugin-scroll-left:hover {
background: url(img/btn.png) left top no-repeat;
}
.plugin-scroll-right {
position: absolute;
right: 0;
height: 51px;
width: 51px;
z-index: 99;
cursor: pointer;
background: url(img/btn.png) right bottom no-repeat;
}
.plugin-scroll-right:hover {
background: url(img/btn.png) right top no-repeat;
}
.plugin-scroll-index {
display: inline-block;
padding: 2px 4px;
border: 1px solid #FFF;
color: #F8D293;
margin-right: 6px;
font-size: 14px;
border-radius: 2px;
cursor: pointer;
}
.plugin-scroll-index:hover,
.plugin-scroll-tag-sel
{
color: #FFF;
border-color: #f39801;
background: #f39801;
}
.plugin-scroll-index-wrap {
position: absolute;
bottom: 20px;
right: 16px;
z-index: 99;
}