インデントに縦線を表示する
from xx202import
インデントに縦線を表示する
borderでインデントに縦線を表示するUserCSS
インデント表示 - 西尾泰和のScrapbox
インデントレベルをわかりやすくする - Scrapboxカスタマイズコレクション
code:style.css
/*インデントに縦線を表示する */
.app:not(.presentation) .indent-mark .char-index:not(:nth-last-child(1)):not(:nth-last-child(2)) {
position: relative;
}
.app:not(.presentation) .indent-mark .char-index:not(:nth-last-child(1)):not(:nth-last-child(2))::before {
content: " ";
position: absolute;
left: 43%;
margin: -4px 0;
border-left: 2px solid rgba(82, 88, 98, 0.25); /* 色の指定 */
}
#UserCSS