インデントに縦線を表示する
インデントに縦線を表示する
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); /* 色の指定 */
}