UserCSS:番号つきリストの表示を変更する
code:style.css
.line.number-list .dot {
display: list-item; /* 表示する */
}
アイコン設定
code:style.css
.line.number-list .dot::before {
content: '\f292'; /* # */
}
フォントサイズ
code:style.css
.line.number-list .c-0 + .dot::before {
font-size: 11px;
}
.line.number-list .c-1 + .dot::before {
font-size: 10px;
}
.line.number-list .c-2 + .dot::before {
font-size: 9px;
}
.line.number-list .c-3 + .dot::before {
font-size: 8px;
}
.line.number-list .c-4 + .dot::before {
font-size: 7px;
}