Matthew Welch
5b78e61031
added swipe controls for easier use on mobile devices and better buttons for use on non mobile devices.
16 lines
287 B
CSS
16 lines
287 B
CSS
.comic-grid {
|
|
display: inline-grid;
|
|
grid-template-columns: auto auto auto auto auto;
|
|
grid-gap: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.comic-page {
|
|
position: absolute;
|
|
max-height: 100vh;
|
|
max-width: 100vw;
|
|
display: block;
|
|
left: 50%;
|
|
transform: translate(-50%);
|
|
}
|