「MediaWiki:Common.css」の版間の差分
ナビゲーションに移動
検索に移動
セットリスト用CSS |
修正? |
||
| 17行目: | 17行目: | ||
/*セットリスト用CSS*/ | /*セットリスト用CSS*/ | ||
.setlist { | .setlist { | ||
counter-reset: | counter-reset: setlist-item; | ||
} | } | ||
.setlist ol, .setlist p { | .setlist ol, .setlist p { | ||
| 25行目: | 25行目: | ||
.setlist li { | .setlist li { | ||
list-style-type: none; | list-style-type: none; | ||
counter-increment: | counter-increment: setlist-item; | ||
} | } | ||
.setlist li:before { | .setlist li:before { | ||
content: "M" counters( | content: "M" counters(setlist-item, "", decimal-leading-zero) ":"; | ||
margin-right: 0.3em; | margin-right: 0.3em; | ||
} | } | ||
.setlist.encore li:before { | .setlist.encore li:before { | ||
content: "EN" counters( | content: "EN" counters(setlist-item, "") ":"; | ||
} | } | ||
/*ここまで、セットリスト用CSS*/ | /*ここまで、セットリスト用CSS*/ | ||
2013年10月15日 (火) 23:01時点における版
/* ここに記述した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: 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;
}
.setlist.encore li:before {
content: "EN" counters(setlist-item, "") ":";
}
/*ここまで、セットリスト用CSS*/