settings
https://gyazo.com/f5aad8e143b8d197c25d5e884bb315a2
コードブロックを小さく
code:style.css
.line span.code-block {
line-height: 1.2em;
font-size: 88%;
}
タイトルごとに背景を変える
code:style.css
:is(
) > a
{
background-color:#fafbe4 !important;
}
code:style.css__
.line .indent-mark .dot:before {
display: block;
position: absolute;
right: -5px;
top: -10px;
}
.line .indent-mark .dot:before {
content:"▶";
}
a
b
c
d
code:style.css__
.line .indent-mark .dot { /* オリジナルのバレットを小さく */
width: 1px;
height: 1px;
}
.line .indent-mark .dot:before { /* 自前のバレット */
display: block;
position: absolute;
right: -5px;
top: -10px;
content:"▶";
}
code:style.css___
.line .indent-mark .dot { /* オリジナルのバレットを消す */
background-color: transparent;
}
.line .indent-mark .dot::before { /* 自前のバレット */
display: block;
position: absolute;
right: -5px;
top: -10px;
content:"▶";
font-weight: 900;
font-size: 6px;
}