番号付きリストにFontAwesomeを使うUserCSS
code:style.css
.line.number-list .dot::before {
display: block;
position: absolute;
font-family: 'Font Awesome 5 Free';
}
.line.number-list .dot {
background-color: transparent;
display: list-item; /* 表示する */
}
アイコン指定
code:style.css
.line.number-list .dot::before {
top: -11px;
content: '\f292'; /* # */
font-weight: 900;
}
フォントサイズと色
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;
}
UserCSS.icon