settings
本文の最後にテキスト挿入
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: solid #0003;
border-width: 1px 0;
font: 500 normal 1.8rem/1 sans-serif;
}
ハッシュ記法のリンクをラベル風にする
style.css/* #で始まるタグをラベル風にする */
a[type="hashTag"] {
display: inline-block;
padding: 0 6px;
margin-left: 4px;
background: #fff;
color: #363c49 !important;
font-size: 0.9em;
border: 1px solid #8f9899;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
a[type="hashTag"]:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
画像のサイズを調節する
画像サイズが大きくなりすぎることがあるので調節できるようにする
[/customize/画像の表示サイズを
** で設定できるようにする]
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; }
テーブルを控えめに表示する
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;
}
編集者を非表示にする
style.css/*
#page-info-menu + ul > li:nth-child(2) {
display: none;
}
*/