settings
code:style.css
code:style.css
/* External links */
.line a.link:not(.icon)::after {
font-family: 'Font Awesome 5 Free';
content: '\f35d';
display: inline-block;
font-weight: 900;
}
code:style.css
.line img.image {
max-height: 100% !important;
max-width: 100% !important;
width: 100%;
}
code:style.css
:root {
}
:root {
}
/* 全体の背景色と文字色 */
body {
background-color: var(--background-color-light) !important;
color: var(--text-color-dark) !important;
}
/* ページリストアイテムの背景色と文字色 */
body .page-list-item {
background-color: var(--background-color-dark) !important;
color: var(--text-color-light) !important;
}
body .page-list-item.list-style-item {
background-color: #ffffff !important; }
/* ナビゲーションバーの背景色とボーダー */
body .navbar {
background-color: var(--background-color-light) !important;
border-bottom: 1px solid var(--text-color-dark) !important;
}
/* 空のページリンクの文字色 */
a.page-link.empty-page-link {
color: var(--link-color) !important;
}
/* 通常のページリンクの文字色 */
a.page-link {
color: var(--text-color-dark) !important;
font-weight: bold;
text-decoration: underline !important;
}