「MediaWiki:Common.css」の版間の差分
ナビゲーションに移動
検索に移動
{{ルビ}}用CSS |
セットリスト用CSSの修正 |
||
| 46行目: | 46行目: | ||
} | } | ||
.setlist li:before { | .setlist li:before { | ||
content: "M" counters(setlist-item, "", decimal-leading-zero) " | content: "M" counters(setlist-item, "", decimal-leading-zero) "."; | ||
margin-right: 0.3em; | margin-right: 0.3em; | ||
} | } | ||
.encore li:before { | |||
content: "EN" counters(setlist-item, "") ": | content: "EN" counters(setlist-item, "") "."; | ||
} | |||
.with-overture { | |||
counter-reset: setlist-item -1; | |||
} | } | ||
/*ここまで、セットリスト用CSS*/ | /*ここまで、セットリスト用CSS*/ | ||
2013年11月23日 (土) 15:21時点における版
/* ここに記述したCSSはすべての外装に反映されます */
#bodyContent {
font-size: 94.4%;
}
/*メインページタイトル*/
body.page-メインページ h1.firstHeading {display:none;}
/*印刷不可*/
@media print{
.printing_none{ display: none !important; }
}
/*ルビ*/
.ruby {
display: inline-table;
vertical-align: bottom;
white-space: nowrap;
}
.ruby .rb {
display: table-row-group;
text-align: center;
}
.ruby .rp { display: none; }
.ruby .rt {
display: table-header-group;
line-height: 100%;
font-size: 0.7em;
text-align: center;
}
/*ページ・ナビゲーションの折り畳みボタン*/
.navigation-box .mw-collapsible-toggle { font-weight: normal; }
.navigation-box .mw-collapsible-toggle > a { color: inherit; }
/*セットリスト用CSS*/
.setlist {
counter-reset: setlist-item;
}
.setlist ol, .setlist p {
margin: 0;
padding: 0;
}
.setlist li {
list-style-type: none;
counter-increment: setlist-item;
}
.setlist li:before {
content: "M" counters(setlist-item, "", decimal-leading-zero) ".";
margin-right: 0.3em;
}
.encore li:before {
content: "EN" counters(setlist-item, "") ".";
}
.with-overture {
counter-reset: setlist-item -1;
}
/*ここまで、セットリスト用CSS*/