「Common.css」の版間の差分
Music765plus (トーク | 投稿記録) |
Music765plus (トーク | 投稿記録) |
||
103行目: | 103行目: | ||
.navbox .collapseButton { | .navbox .collapseButton { | ||
width: 6em; | width: 6em; | ||
+ | } | ||
+ | |||
+ | /* INFOBOX */ | ||
+ | .infobox { | ||
+ | border: 1px solid #aaa; | ||
+ | background-color: #f9f9f9; | ||
+ | color: black; | ||
+ | margin: 0.5em 0 0.5em 1em; | ||
+ | padding: 0.2em; | ||
+ | float: right; | ||
+ | clear: right; | ||
+ | text-align: left; | ||
+ | font-size: 88%; | ||
+ | line-height: 1.5em; | ||
+ | } | ||
+ | .infobox caption { | ||
+ | margin-top: 0.5em; | ||
+ | font-size: 125%; | ||
+ | font-weight: bold; | ||
+ | } | ||
+ | .infobox td, | ||
+ | .infobox th { | ||
+ | vertical-align: top; | ||
+ | } | ||
+ | .infobox.bordered { | ||
+ | border-collapse: collapse; | ||
+ | } | ||
+ | .infobox.bordered td, | ||
+ | .infobox.bordered th { | ||
+ | border: 1px solid #aaa; | ||
+ | } | ||
+ | .infobox.bordered .borderless td, | ||
+ | .infobox.bordered .borderless th { | ||
+ | border: 0; | ||
+ | } | ||
+ | |||
+ | .infobox.sisterproject { | ||
+ | width: 20em; | ||
+ | font-size: 90%; | ||
} | } |
2018年3月27日 (火) 17:36時点における版
/* ここに記述したCSSはすべての外装に反映されます #mw-body { } */ /* コンテンツのページ幅を変更 */ #content p { max-width: 600px; margin: 1em; } .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: 70%; 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; font-size: 80%; 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; } /* INFOBOX */ .infobox { border: 1px solid #aaa; background-color: #f9f9f9; color: black; margin: 0.5em 0 0.5em 1em; padding: 0.2em; float: right; clear: right; text-align: left; font-size: 88%; line-height: 1.5em; } .infobox caption { margin-top: 0.5em; font-size: 125%; font-weight: bold; } .infobox td, .infobox th { vertical-align: top; } .infobox.bordered { border-collapse: collapse; } .infobox.bordered td, .infobox.bordered th { border: 1px solid #aaa; } .infobox.bordered .borderless td, .infobox.bordered .borderless th { border: 0; } .infobox.sisterproject { width: 20em; font-size: 90%; }