27 lines
381 B
CSS
27 lines
381 B
CSS
|
#comicMain {
|
||
|
background: black;
|
||
|
color: white;
|
||
|
font-size: 3em;
|
||
|
}
|
||
|
#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;
|
||
|
}
|