Settings
https://gyazo.com/0391d35af899b813826ba644efe0f8ea
サイズ調整
code:style.css
.container {
max-width: none;
}
コードの行番号を表示する
code:style.css
@media screen and (min-width: 768px) {
.section-title, .code-block-start {
counter-reset: codeline
}
.code-block code > span:not(class) { counter-increment: codeline
}
body:not(.presentation) .code-block code > span:not(class)::before { content: counter(codeline);
position: absolute;
display: inline-block;
left: -2.3em;
z-index: 10;
min-width: 50px;
text-align: right;
vertical-align: bottom;
font-family: monospace; color: grey
}
.code-block code > span:not(class)::before { opacity: .5;
}
.cursor-line .code-block code > span:not(class)::before { opacity: 1;
font-weight: bolder;
}
}
ヘッダーを固定する
code:import.css
/* 本体 */
/* スマホ用 */
リストの丸を小さくする
code:style.css
.dot {
width: 3px !important;
height: 3px !important;
}
検索アイコンを消す
code:style.css
.navbar .kamon {
display: none;
}