「MediaWiki:Common.css」の版間の差分
表示
編集の要約なし |
編集の要約なし |
||
| 14行目: | 14行目: | ||
} | } | ||
/* | /* 目次(TOC)全体の外枠・背景・余白調整 */ | ||
.toc, | .toc, | ||
.mw-table-of-contents-container, | .mw-table-of-contents-container, | ||
.vector-toc { | .vector-toc { | ||
background-color: #f0f7ff !important; /* | background-color: #f0f7ff !important; /* 全体の背景(淡いブルー) */ | ||
border: 1px solid #2563eb !important; /* 綺麗なブルーの枠線 */ | |||
border-radius: 8px !important; /* | border-radius: 8px !important; /* 角丸 */ | ||
padding: 8px 12px !important; /* 無駄な余白を減らしてちょうど良いサイズに */ | |||
display: inline-block !important; /* コンテンツに合わせたコンパクトな幅 */ | |||
max-width: 100% !important; | |||
} | } | ||
/* | /* 目次内部のリスト(文字の背景)を白にする */ | ||
.toc ul, | |||
.vector-toc-contents, | |||
.vector-toc-list-item { | |||
background-color: #ffffff !important; /* 文字の背景を白 */ | |||
border-radius: 6px !important; /* 角丸 */ | |||
padding: 6px 10px !important; /* 内側の余白 */ | |||
margin-top: 4px !important; | |||
} | |||
/* 目次内のリンク文字色 */ | |||
.toc a, | .toc a, | ||
.vector-toc a { | .vector-toc a { | ||
2026年9月21日 (月) 22:24時点における版
/* ここに記述したCSSはすべての外装に反映されます */
/* フッターの各種リンク(プライバシー・ポリシー等)だけを非表示 */
#footer-places,
.footer-places {
display: none !important;
}
/* 左側のサイドバー(メインメニューエリア)をミントグリーンに変更 */
.vector-main-menu-container,
.mw-sidebar {
background-color: #f0fdf4 !important; /* 爽やかなミントグリーン背景 */
padding: 12px !important;
border-radius: 8px !important; /* 角を少し丸くする */
border: 1px solid #bbf7d0 !important; /* 優しく馴染むグリーンの枠線 */
}
/* 目次(TOC)全体の外枠・背景・余白調整 */
.toc,
.mw-table-of-contents-container,
.vector-toc {
background-color: #f0f7ff !important; /* 全体の背景(淡いブルー) */
border: 1px solid #2563eb !important; /* 綺麗なブルーの枠線 */
border-radius: 8px !important; /* 角丸 */
padding: 8px 12px !important; /* 無駄な余白を減らしてちょうど良いサイズに */
display: inline-block !important; /* コンテンツに合わせたコンパクトな幅 */
max-width: 100% !important;
}
/* 目次内部のリスト(文字の背景)を白にする */
.toc ul,
.vector-toc-contents,
.vector-toc-list-item {
background-color: #ffffff !important; /* 文字の背景を白 */
border-radius: 6px !important; /* 角丸 */
padding: 6px 10px !important; /* 内側の余白 */
margin-top: 4px !important;
}
/* 目次内のリンク文字色 */
.toc a,
.vector-toc a {
color: #1d4ed8 !important;
font-weight: 500;
}