settings
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
clear: both;
}
Settingsに消えてもらう
code:style.css
li.page-list-item:is(
) { display: none; }
カードのデザイン
code:style.css
/* カードタイトルぶぶん */
.grid li.page-list-item a .header{
padding; 8px 10px;
}
/* タイトルの上のBorderを消して 背景色を設定 */
.grid li.page-list-item a .header{
border-top: 3px;
}
/* カード自体の borde-radius を 1 に */
/* アウトラインつける(これは必要なかったので 0 にしている,好きな時に戻せるように) */
/* カードの下にあるシャドウを消す */
.grid li.page-list-item:not(.pin) a {
border-radius: 0;
box-shadow: none;
}
ピンどめを段落わけする
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
grid-column-start: 1;
}
ピンどめをタイトルだけにする
code:style.css
.grid li.pin {
height: 3rem;
width: 100%;
}
.grid li.pin a {
box-shadow: none !important;
}
.grid li.pin .header {
border-top:none !important;
padding: 6px 5px !important;
}
.grid li.pin .title {
text-align: center !important;
text-decoration: underline;
}
.grid li.page-list-item a .header.pinned {
border: none;
}
.grid li.pin .content :is(.description,.icon) {
display: none !important;
}
.page-list-item a .pin {
background: none !important;
}
[-.icon] あるいは [hr.icon] を <hr> に置換
code:style.css
.lines a.icon:is(
) {
display: block;
width: inherit;
pointer-events: none;
border-bottom: dashed 1px #777; margin-top: 1em;
margin-bottom: -1em;
}
.lines img.icon:is(
) { display: none; }
.stream a:is(
) { display: none; }
.grid li.page-list-item a .description img:is(
) { display: none; }
ハッシュタグをボタンの見た目に
code:style.css
color: var(--page-bg, #fff) !important; background-color: var(--page-link-color, #41b059); font-weight: bold;
padding: .2em;
border-radius: 2px;
}
background-color: var(--page-link-hover-color, #3a9d50); }
アイコンの左右に少し隙間を入れる
code:style.css
.line img.icon:not(.strong-icon):first-child { margin-left: 0.25em; }
.line img.icon:not(.strong-icon):last-child { margin-right: 0.25em; }
あああkokamumo.iconあああ
Scrapbox デフォルトのカードの上の謎のボーダーの目的がわからない
code:style.css
.grid li.page-list-item a .header{
padding; 8px 10px;
}
/* タイトルの上のBorderを消して 背景色を設定 */
.grid li.page-list-item a .header{
border-top: 0px;
}
[| ] 画像・テキストをセンタリングする文字装飾記法
code:style.css
.line:not(.cursor-line) .deco-\| {
display: flex;
justify-content: center;
align-items: center;
margin-top: -2em;
margin-bottom: -2em;
flex-wrap: nowrap;
}
/* Youtube 動画に対応 */
.line:not(.cursor-line) .deco-\| iframe.youtube {
width: 100%;
height: inherit;
}
あああ
[" ] 画像キャプション記法
code:style.css
/* 中央寄せにする部分, テキスト編集中は無効化 */
.line:not(.cursor-line) .deco-\" {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-top: -2em;
margin-bottom: -2em;
}
/* 文字の見た目の部分 */
.line .deco-\" {
font-style: italic;
font-size: .8em;
}
インデントのドットサイズと色
code:style.css
.line .indent-mark .dot {
height: 5px;
width: 5px;
background-color: var(--tool-color, #848484); }
関連の Links の箱を消す
code:style.css
.related-page-list .grid li.links {
display: none;
}
見た目
code:style.css
html {
--navbar-bg: var(--current-dark) !important;
--card-title-color: #1f1f1f !important; --card-title-bg: var(--current-light) !important;
--card-bg: var(--current-light) !important;
--card-description-link-color: #c2c2c2 !important; --card-box-shadow-color: var(--current-darkest) !important;
--tool-bg: var(--current-gray) !important;
--page-bg: var(--current-light) !important;
--page-link-color: #00B9D5 !important; --empty-page-link-color: #c9171e !important; }
一行目を特殊に
code:style.css
/* 一行目 の下に Border を表示する, 上下の感覚を調整する*/
.page-wrapper .lines div.line:nth-child(2) {
padding-top: 10px;
padding-bottom: 10px;
border-bottom: solid 1px #777; margin-bottom: 21px;
}
/* 一行目のテキストをセンタリングする, 色やフォントなども指定 */
.page-wrapper .lines div.line:nth-child(2) span.text {
text-align: center;
font-style: italic;
font-size: 0.9em;
}
code:style.css
/* 一行目に何も文字がないなら(つまり, 改行だけなら)詰める */
/* 不要ならこの style.css を削除する */
.lines .line:nth-child(2):not(.cursor-line) br.empty-char-index {
display: contents;
}
ページ下部のshadowをborderに変更する
code:style.css
/* ページ本文にデフォルトで設定されている box-shadow を消す */
.page-wrapper div.page {
box-shadow: none;
}
/* ページ本文最終行の下に border を追加する */
.page-wrapper div.line:last-child {
border-bottom: solid 1px #777; }
ページタイトルのデザイン
タイトル文字をセンタリング&イタリック
code:style.css
.page-wrapper .lines .line-title span.text {
text-align: center;
font-weight: 700;
padding-bottom: 0;
font-style: italic;
}
テロメアには消えてもらう
code:style.css
.telomere {
display: none;
}
上に表示されるバー全部消えてもらう
code:style.css
.navbar {
display: none;
}