mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
On kindle it's better to not add manually the panelview as it will unlock several features: - Animation - Adjust to screen size - Panel View It means, you can still have a panel view, but it's handled by kindle directly.
73 lines
831 B
Cheetah
73 lines
831 B
Cheetah
#PV {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
#PV-T {
|
|
top: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
}
|
|
|
|
#PV-B {
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
}
|
|
|
|
#PV-L {
|
|
left: 0;
|
|
width: 49.5%;
|
|
height: 100%;
|
|
float: left;
|
|
}
|
|
|
|
#PV-R {
|
|
right: 0;
|
|
width: 49.5%;
|
|
height: 100%;
|
|
float: right;
|
|
}
|
|
|
|
#PV-TL {
|
|
top: 0;
|
|
left: 0;
|
|
width: 49.5%;
|
|
height: 50%;
|
|
float: left;
|
|
}
|
|
|
|
#PV-TR {
|
|
top: 0;
|
|
right: 0;
|
|
width: 49.5%;
|
|
height: 50%;
|
|
float: right;
|
|
}
|
|
|
|
#PV-BL {
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 49.5%;
|
|
height: 50%;
|
|
float: left;
|
|
}
|
|
|
|
#PV-BR {
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 49.5%;
|
|
height: 50%;
|
|
float: right;
|
|
}
|
|
|
|
.PV-P {
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
position: absolute;
|
|
display: none;
|
|
} |