blob: 0eca3f1cdc02c3bbcff82b9a3d39c9dd26627187 (
plain)
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
|
.collectionPdfView-buttonTray {
top : 25px;
left : 20px;
position: relative;
transform-origin: left top;
position: absolute;
}
.collectionPdfView-cont{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left:0;
}
.collectionPdfView-backward {
color : white;
top :0px;
left : 0px;
position: absolute;
background-color: rgba(50, 50, 50, 0.2);
}
.collectionPdfView-forward {
color : white;
top :0px;
left : 35px;
position: absolute;
background-color: rgba(50, 50, 50, 0.2);
}
|