blob: 0144625c112bc8f6442b9873a7a65ff24d4e1523 (
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
|
.collectionPdfView-buttonTray {
top : 25px;
left : 20px;
position: relative;
transform-origin: left top;
position: absolute;
}
.collectionPdfView-cont{
width: 100%;
height: 100%;
position: absolute;
}
.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);
}
|