インデントの深さに応じてdotの色やサイズを変えるUserCSS
code:style.css
.line .indent-mark .dot { display: none; }
--size: var(--dot-size, 6px);
position: absolute;
top: calc(13px - var(--size) / 2);
right: calc(12px - var(--size) / 2);
display: inline-block;
width: var(--size);
font-family: "Font Awesome 5 Free";
font-size: var(--size);
font-style: normal;
font-weight: 900; /* Solid */
font-variant: normal;
line-height: 1;
color: var(--dot-color, var(--page-text-color, #555)); text-align: center;
content: "\f068"; /* minus */
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: auto;
}
番号付きリストの記号を変える
code:style.css
content: "\f292"; /* hashtag */
}
インデントの深さに応じてdotのサイズを変える
code:style.css
インデントの深さに応じてdotの色を変える
code:style.css
.indent-mark:is(
:has(.dot:nth-child(6n + 3))
.indent-mark:is(
:has(.dot:nth-child(6n + 4))
.indent-mark:is(
:has(.dot:nth-child(6n + 5))
.indent-mark:is(
:has(.dot:nth-child(6n + 6))
.indent-mark:is(
:has(.dot:nth-child(6n + 7))