settings
code: style.css
/*本文が入る領域*/
.page {
box-shadow: none;
background-color: rgba(20, 20, 20, 0.6);
}
/*文字色*/
.editor {
}
/*画像サイズ*/
.line img.image {
max-height: none ;
max-width: 95% ;
}
/*リストの色*/
.grid li.page-list-item a {
background-color: rgba(15, 15, 15, 0.6);
}
/*背景色*/
body {
}
/*マウスオーバー*/
.grid li.page-list-item a .hover {
background-color: rgba(00, 00, 00, 0.3) ;
}
参考
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
.grid li.page-list-item a .icon {
position: relative;
display: flex; /* フレックスボックスを有効化 */
justify-content: center; /* 水平方向の中央揃え */
align-items: center; /* 垂直方向の中央揃え */
padding: 0; /* 不要な余白を削除 */
margin: 0 auto !important;
}
.grid li.page-list-item a .icon img {
display: table-cell;
width: auto;
max-height: 110%;
max-width: 200%;
vertical-align: middle;
border-radius: 3px;
}
参考
code:style.css
/* settingsへのリンクを消す */
display: none;
}
参考