Last active
October 11, 2025 11:26
-
-
Save AndroPlus-org/bf8e963b3d82faef927f08a65a768aad to your computer and use it in GitHub Desktop.
TYPE-MOONコミックエースを見開き表示する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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