settings
本文の最後にテキスト挿入
code:style.css
.app:not(.presentation) .page::after {
content: 'Discord.js Japan User Group に参加していつでも質問してください!discord.gg/8yNx2Fs';
display: block;
margin-top: 5rem;
padding: 1rem 0;
text-align: center;
border-width: 1px 0;
font: 500 normal 1.8rem/1 sans-serif;
}
ハッシュ記法のリンクをラベル風にする
code:style.css
/* #で始まるタグをラベル風にする */
display: inline-block;
padding: 0 6px;
margin-left: 4px;
font-size: 0.9em;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
画像のサイズを調節する
画像サイズが大きくなりすぎることがあるので調節できるようにする
[/customize/画像の表示サイズを** で設定できるようにする] code:style.css
.level-1 img { width: 16.7%; max-height: none; }
.level-2 img { width: 33.3%; max-height: none; }
.level-3 img { width: 50%; max-height: none; }
.level-4 img { width: 66.7%; max-height: none; }
.level-5 img { width: 83.3%; max-height: none; }
.level-6 img { width: 100%; max-height: none; }
テーブルを控えめに表示する
code:style.css
.table-block .cell:nth-child(odd),
.table-block .cell:nth-child(even) {
background: unset;
}
.table-block .table-block-start {
padding: unset;
font-size: unset;
background-color: unset;
}
.table-block .table-block-start a {
color: unset;
}
編集者を非表示にする
code:style.css
/*
display: none;
}
*/