-
Notifications
You must be signed in to change notification settings - Fork 193
/
pdf-flip.css
78 lines (63 loc) · 1.7 KB
/
pdf-flip.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#magazineViewButtonContainer button span, #magazineViewButtonContainer .toolbarButton {
width: auto;
height: auto;
margin-left: -50%;
}
#magazineContainer {
padding-top: 10px;
text-align: center;
overflow: hidden;
}
#magazine {
margin: 0 auto !important;
text-align: center;
}
#magazine .page {
cursor:pointer;
background-color: #fff;
}
#magazine .page-wrapper{
background: url(pics/loader.gif) center no-repeat #fff;
}
#magazineContainer .zoom-in .next-button,
#magazineContainer .zoom-in .previous-button {
display: none;
}
#mainContainer {
overflow: hidden;
}
.flipbook-toolbar{
width: 100%;
height: 30px;
z-index: 15;
padding-left: 45%;
background:#ededed;
position:absolute;
}
.flipbook-toolbar input{
float:left;
margin-top:5px;
width:50px;
}
.flipbook-toolbar .next, .flipbook-toolbar .prev, .flipbook-toolbar .download {display: block;width:30px;height:30px;float:left;background-repeat: no-repeat;margin-top:8px;margin-left:10px}
.flipbook-toolbar .next{background-image: url(pics/alt-next.png)}
.flipbook-toolbar .prev {background-image: url(pics/alt-prev.png)}
.flipbook-toolbar .download {background-image: url(pics/download-png.png);margin-top:5px;}
.directions a{
position: absolute;
top: 50%;
margin-top: -16px;
outline: 0;
width: 45px;
height: 45px;
text-indent: -9999px;
z-index: 9999;
}
.directions a.prev-button{
left: 0;
background: #f7f6f6 url(pics/alt-prev.png) no-repeat center center;
}
.directions a.next-button{
right: 0;
background: #f7f6f6 url(pics/alt-next.png) no-repeat center center;
}