箇条書きのバレットをマイナス記号にするUserCSS
上記をカスタムしたもの
code:style.css
.line .indent-mark .dot { background-color: transparent; }
.line .indent-mark .dot::before {
display: block;
position: absolute;
top: -10px;
font-size: 9px;
content: 'ー'; /* マイナス記号:通常 */
font-weight: 900;
}
.indent-mark .dot:nth-child(6n+2)::before {
}
.indent-mark .dot:nth-child(6n+3)::before {
}
.indent-mark .dot:nth-child(6n+4)::before {
}
.indent-mark .dot:nth-child(6n+5)::before {
}
.indent-mark .dot:nth-child(6n+6)::before {
}
.indent-mark .dot:nth-child(6n+7)::before {
}