箇条書きのBulletを控えめにする
箇条書きのBulletを控えめにする
code: style.css
/* Font Awesomeのアイコンを削除するCSS */
.line .indent-mark .dot:before {
content: "" !important; /* アイコンを削除 */
color: transparent !important; /* 色を透明に */
}
/* 箇条書きのbulletを控えめにするUser CSS */
.line .indent-mark .dot {
top: 11px !important;
width: 6px !important;
height: 3px !important;
background-color: #c9c9c9 !important; }