settings
ピン留めしたときにカードの段落を変える
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
grid-column-start: 1;
}
[_ xxx] のときの文字に囲みをつける
$ {見出しの文字列}
↑コピペですぐに出来る形(コピペしなくてもこうやってかけば反映される)
code:style.css
.deco-\_ {
color: #000; /* 文字色を黒に */ background-color: #fff; /* 背景色を白に */ font-size: 1.1em;
/* 黒い四角い枠を表示 */
/* 左右に余白を追加 */
padding-left: 5px;
padding-right: 5px;
/* 背景のデコレーションを削除 */
background-image: none;
}
code:style.css
/*
body {
font-family: "MS Gothic", monospace !important;
}
* {
font-family: "MS Gothic", sans-serif !important;
}
*/
/* 箇条書きの形を変える */
.line .indent-mark .dot {
height: .2em;
width: .4em;
border-radius: 25%;
background-color: rgba(3, 2, 13, .55)
}
.app:not(.presentation) .line .indent-mark .dot {
top: auto;
bottom: 0
}
/* pin止めしたものとそうでないものの段落をわける*/
.page-list-item.pin+.page-list-item:not(.pin) {
clear: both;
}
/* 一覧の幅を広くする */
.container {
max-width: none !important;
}