settings
code: style.css
/*画像サイズをある程度指定できるようにする*/
.level-1 img { width: 16.7%; max-height: none !important; }
.level-2 img { width: 33.3%; max-height: none !important; }
.level-3 img { width: 50%; max-height: none !important; }
.level-4 img { width: 66.7%; max-height: none !important; }
.level-5 img { width: 83.3%; max-height: none !important; }
.level-6 img { width: 100%; max-height: none !important; }
/* 画像URL のときlevel-2です.*と[の間はスペースをあける*/ code: style.css
/*行はじめのドットを消す*/
.line .dot {
display: none !important;
}
code: style.css
/*ピン留めされているページとされていないページの間に区切り線を表示できるようにしてほしい*/
.page-list-item.pin + .page-list-item:not(.pin) {
clear: both;
}
code: style.css
/*画像を並べて表示する*/
/* マトリクス記法 */
.line:not(.cursor-line) .deco-\| { display: inline-flex }
.line .deco-\| img.image { object-fit: contain; margin: 0 }
/* 太字記法と組み合わせて列数を変える */
.line .level-1 .deco-\| > span { width: calc(100%/1) }
.line .level-2 .deco-\| > span { width: calc(100%/2) }
.line .level-3 .deco-\| > span { width: calc(100%/3) }
.line .level-4 .deco-\| > span { width: calc(100%/4) }
.line .level-5 .deco-\| > span { width: calc(100%/5) }
.line class^="level" .deco-\| img.image { object-fit: cover; width: 100%; height: 100% } /* 並べた画像の間にスキマが欲しい場合はこの2行を追加・ぴっちり敷き詰めたい場合はこの2行は不要 */
.line .deco-\| > span, .line class^="level" .deco-\| > span { overflow: hidden } .line .deco-\| img.image, .line class^="level" .deco-\| img.image { margin: .2em } code: style.css
/*画像をセンタリングするUserCSS*/
.line img.image {
display: block;
margin: 0 auto;
}
code: style.css
/*リストからsettingsを消すUserCSS*/
display: none;
}
ページ幅変更
上付き文字
# 罫線
/icons/hr.icon