settings
https://gyazo.com/f5aad8e143b8d197c25d5e884bb315a2
引用でのイタリック体をやめる。
code:style.css
.line .quote {
font-style: normal;
}
Portrait
バレットを少し薄めに
code:style.cs
.line .indent-mark .dot {
top: 12px;
width: 6px;
height: 4px;
}
code:style.css
@import '../コードブロック行頭の空白の色を変えるCSS/style.css';
}
.section-title, .code-block-start {
counter-reset: codeline
}
.code-block .indent-mark > spanclass^="c-":last-child { counter-increment: codeline
}
body:not(.presentation) .code-block .indent-mark > spanclass^="c-":last-child::before { content: counter(codeline);
position: absolute;
}
.code-block .indent-mark > spanclass^="c-":last-child::before { color: var(--code-line-number-color, #3f3f3f); }
/* カーソル選択時の行番号の色 */
.cursor-line .code-block .indent-mark > spanclass^="c-":last-child::before { color: var(--cursor-code-line-number-color, #FF00F0); font-weight: bolder;
}
code:style.cs
/* 行番号を表示 -- ウィンドウ幅768px以上で適用 */
@media screen and (min-width: 768px) {
.editor .lines { counter-reset: line }
/* タイトルから数えるときは :not(.line-title) を消してね */
.editor .line:not(.line-title) { counter-increment: line }
/* タイトルから数えるときは :not(.line-title) を消してね */
.app:not(.presentation) .editor .line:not(.line-title)::before {
content: counter(line);
position: absolute; display: inline-block; left: -110px; z-index: 10;
min-width: 50px; text-align: right; vertical-align: middle;
/* 行番号のフォントとか色とかの指定はここ */
font-family: monospace; color: grey }
/* カーソル行の行番号を濃く表示する */
.editor .line:not(.line-title)::before { opacity: .5 }
.editor .line.cursor-line:not(.line-title)::before { opacity: 1; font-weight: bolder } }
code:style.css
display: none !important;
}
display: none;
}
code:style.css
display: none;
}
バレットを星にする
code:style.cs
/* アイコン指定 */
.line .indent-mark .dot::before {
display: block;
position: absolute;
top: -10px;
font-family: 'Font Awesome 5 Free';
font-size: .7em;
/* content: '\f068'; /* マイナス記号:通常 */
content: '\f005'; /* スター:クリスマス用 */
/* content: '\f1b0'; /* 肉球:猫の日用 */
/* content: '\f1fd'; /* バースデーケーキ */
font-weight: 900;
}
/* 既定のbulletを消す */
.line .indent-mark .dot {
background-color: transparent;
}
/* 色 */
.indent-mark .dot:nth-child(6n+2)::before {
}
.indent-mark .dot:nth-child(6n+3)::before {
}
.indent-mark .dot:nth-child(6n+4)::before {
}
.indent-mark .dot:nth-child(6n+5)::before {
}
.indent-mark .dot:nth-child(6n+6)::before {
}
.indent-mark .dot:nth-child(6n+7)::before {
}
.indent-mark span.dot:nth-child(n+10)::before {
text-shadow: 1px 0px 1px var(--over-dot-color),
0px 1px 1px var(--over-dot-color),
-1px 0px 1px var(--over-dot-color),
0px -1px 1px var(--over-dot-color);
}
番号つきリスト
code:style.cs
.line.number-list .dot {
display: list-item; /* 表示する */
}
/* アイコン指定 */
.line.number-list .dot::before {
position: inherit;
top: -11px;
content: '\f292'; /* #:通常 */ /* content: '\f2dc'; /* 雪:クリスマス用 */
font-size: .6em;
}