settings
お借りしたもの(問題があれば削除します)
以下CSS
code:style.css
/* 背景色 */
body {
background-color:#e7e7e7;
}
/* 引用の左端部分の色を消す */
.quote {
border-left: none !important;
background-color: #e0e0e0 !important; padding-left: 0px !important;
}
/* 画像に軽い影をつける */
.line img.image {
box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
}
code:style.css
}
.section-title, .code-block-start {
counter-reset: codeline
}
.code-block .indent-mark > span.char-index:last-child {
counter-increment: codeline
}
body:not(.presentation) .code-block .indent-mark > span.char-index:last-child::before {
content: counter(codeline);
position: absolute;
}
.code-block .indent-mark > span.char-index:last-child::before {
color: var(--code-line-number-color, #3f3f3f); }
/* カーソル選択時の行番号の色 */
.cursor-line .code-block .indent-mark > span.char-index:last-child::before {
color: var(--cursor-code-line-number-color, #FF00F0); font-weight: bolder;
}
.indent {
margin-left: 2.5em !important;
}
code:style.css
.line .dot {
display: none !important;
}