「Common.css」の版間の差分
Music765plus (トーク | 投稿記録) |
Music765plus (トーク | 投稿記録) |
||
6行目: | 6行目: | ||
/* メインページのタイトルを消す */ | /* メインページのタイトルを消す */ | ||
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } | body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } | ||
+ | |||
+ | /* default skin for navigation boxes */ | ||
+ | /* navbox container style */ | ||
+ | table.navbox { | ||
+ | border: 1px solid #aaa; | ||
+ | width: 100%; | ||
+ | margin: auto; | ||
+ | clear: both; | ||
+ | font-size: 88%; | ||
+ | text-align: center; | ||
+ | padding: 1px; | ||
+ | } | ||
+ | |||
+ | /* single pixel border between adjacent navboxes (doesn't work for IE6, but that's okay) */ | ||
+ | table.navbox + table.navbox { | ||
+ | margin-top: -1px; | ||
+ | } | ||
+ | |||
+ | /* title and above/below styles */ | ||
+ | .navbox-title, | ||
+ | .navbox-abovebelow, | ||
+ | table.navbox th { | ||
+ | text-align: center; | ||
+ | padding-left: 1em; | ||
+ | padding-right: 1em; | ||
+ | } | ||
+ | |||
+ | /* group style */ | ||
+ | .navbox-group { | ||
+ | white-space: nowrap; | ||
+ | text-align: right; | ||
+ | font-weight: bold; | ||
+ | padding-left: 1em; | ||
+ | padding-right: 1em; | ||
+ | } | ||
+ | |||
+ | /* Background color */ | ||
+ | .navbox, | ||
+ | .navbox-subgroup { | ||
+ | background: #fdfdfd; | ||
+ | } | ||
+ | |||
+ | /* Must match background color */ | ||
+ | .navbox-list { | ||
+ | border-color: #fdfdfd; | ||
+ | } | ||
+ | |||
+ | /* Level 1 color */ | ||
+ | .navbox-title, | ||
+ | table.navbox th { | ||
+ | background: #ccccff; | ||
+ | } | ||
+ | |||
+ | /* Level 2 color */ | ||
+ | .navbox-abovebelow, | ||
+ | .navbox-group, | ||
+ | .navbox-subgroup .navbox-title { | ||
+ | background: #ddddff; | ||
+ | } | ||
+ | |||
+ | /* Level 3 color */ | ||
+ | .navbox-subgroup .navbox-group, | ||
+ | .navbox-subgroup .navbox-abovebelow { | ||
+ | background: #e6e6ff; | ||
+ | } | ||
+ | |||
+ | /* Even row striping */ | ||
+ | .navbox-even { | ||
+ | background: #f7f7f7; | ||
+ | } | ||
+ | |||
+ | /* Odd row striping */ | ||
+ | .navbox-odd { | ||
+ | background: transparent; | ||
+ | } | ||
+ | |||
+ | /* [[MediaWiki:Common.js]] にある createCollapseButtons 関数を参照。 */ | ||
+ | .collapseButton { | ||
+ | float: right; | ||
+ | font-weight: normal; | ||
+ | text-align: right; | ||
+ | width: auto; | ||
+ | } | ||
+ | |||
+ | /* [[Template:Navbox]] に配置する場合、左に配置されている [[Template:Tnavbar]] とのバランスを取る。 */ | ||
+ | .navbox .collapseButton { | ||
+ | width: 6em; | ||
+ | } |
2018年1月24日 (水) 20:37時点における版
/* ここに記述したCSSはすべての外装に反映されます */ .mw-body { max-width: 700px; } .toc, #toc { display: none; } /* メインページのタイトルを消す */ body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } /* default skin for navigation boxes */ /* navbox container style */ table.navbox { border: 1px solid #aaa; width: 100%; margin: auto; clear: both; font-size: 88%; text-align: center; padding: 1px; } /* single pixel border between adjacent navboxes (doesn't work for IE6, but that's okay) */ table.navbox + table.navbox { margin-top: -1px; } /* title and above/below styles */ .navbox-title, .navbox-abovebelow, table.navbox th { text-align: center; padding-left: 1em; padding-right: 1em; } /* group style */ .navbox-group { white-space: nowrap; text-align: right; font-weight: bold; padding-left: 1em; padding-right: 1em; } /* Background color */ .navbox, .navbox-subgroup { background: #fdfdfd; } /* Must match background color */ .navbox-list { border-color: #fdfdfd; } /* Level 1 color */ .navbox-title, table.navbox th { background: #ccccff; } /* Level 2 color */ .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: #ddddff; } /* Level 3 color */ .navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow { background: #e6e6ff; } /* Even row striping */ .navbox-even { background: #f7f7f7; } /* Odd row striping */ .navbox-odd { background: transparent; } /* [[MediaWiki:Common.js]] にある createCollapseButtons 関数を参照。 */ .collapseButton { float: right; font-weight: normal; text-align: right; width: auto; } /* [[Template:Navbox]] に配置する場合、左に配置されている [[Template:Tnavbar]] とのバランスを取る。 */ .navbox .collapseButton { width: 6em; }