2019-07-15 22:51:10 -07:00
|
|
|
.comic-grid {
|
|
|
|
display: inline-grid;
|
|
|
|
grid-template-columns: auto auto auto auto auto;
|
|
|
|
grid-gap: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comic-page {
|
2019-07-16 11:15:35 -07:00
|
|
|
position: absolute;
|
2019-07-15 22:51:10 -07:00
|
|
|
max-height: 100vh;
|
|
|
|
max-width: 100vw;
|
|
|
|
display: block;
|
2019-07-16 11:15:35 -07:00
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%);
|
2019-07-15 22:51:10 -07:00
|
|
|
}
|