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