Skip to content

Instantly share code, notes, and snippets.

@AndroPlus-org
Last active October 11, 2025 11:26
Show Gist options
  • Save AndroPlus-org/bf8e963b3d82faef927f08a65a768aad to your computer and use it in GitHub Desktop.
Save AndroPlus-org/bf8e963b3d82faef927f08a65a768aad to your computer and use it in GitHub Desktop.
TYPE-MOONコミックエースを見開き表示する
#sakuhin-info
,#viewerPc > div.container-headerArea
,.ad_fbb
,footer
,nav
{display: none !important;}
/* 画像クリックで縦幅一杯に表示させる */
#viewerPc .inner-delivery-contents .box{
margin-top: 0px !important;
}
.col-viewer{
width: 100% !important;
}
/* .lazy-container の中の .row を逆順で見開きに */
.lazy-container {
display: flex;
flex-wrap: wrap;
flex-direction: row-reverse; /* img0が右側になるように */
justify-content: center;
}
.lazy-container > .row:first-child {
width: 100% !important;
}
.lazy-container > .row {
width: 50% !important;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
/* 画像を縦100vhに合わせて自然なサイズで表示 */
.lazy-container img.viewerFixedImage {
height: 100vh !important;
width: auto !important;
display: block;
}
/* スペーサー画像は非表示に */
.lazy-container img.spacer {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment