26 lines
382 B
CSS
26 lines
382 B
CSS
#comicMain {
|
|
background: black;
|
|
color: white;
|
|
font-size: 3rem;
|
|
}
|
|
#comicPageList {
|
|
width: 90%;
|
|
}
|
|
|
|
#comicView {
|
|
display: flex;
|
|
flex-flow: row;
|
|
}
|
|
#comicView #comicPage {
|
|
flex: 10 auto;
|
|
}
|
|
#comicView #comicPrev,
|
|
#comicView #comicNext {
|
|
flex: 1 auto;
|
|
padding-top: 45%;
|
|
}
|
|
#comicView .comicPager {
|
|
position: absolute;
|
|
top: 0;
|
|
margin: auto;
|
|
}
|