MediaWiki:Common.css: Difference between revisions
Appearance
Jemaleddin (talk | contribs) No edit summary |
Jemaleddin (talk | contribs) No edit summary |
||
| Line 6: | Line 6: | ||
counter-increment: raw; | counter-increment: raw; | ||
content: counter(raw) " - "; | content: counter(raw) " - "; | ||
} | |||
.the-list li:nth-child(25n) { | |||
border-bottom: 1px dotted #aaa; | |||
padding-bottom: 5px; | |||
margin-bottom: 5px; | |||
} | |||
.the-list li:nth-child(50n) { | |||
border-bottom: 1px dashed #999; | |||
padding-bottom: 5px; | |||
margin-bottom: 5px; | |||
} | } | ||
.the-list li:nth-child(100n) { | .the-list li:nth-child(100n) { | ||
Revision as of 10:30, 8 November 2024
/* CSS placed here will be applied to all skins */
body {
counter-reset: raw;
}
.episode::before {
counter-increment: raw;
content: counter(raw) " - ";
}
.the-list li:nth-child(25n) {
border-bottom: 1px dotted #aaa;
padding-bottom: 5px;
margin-bottom: 5px;
}
.the-list li:nth-child(50n) {
border-bottom: 1px dashed #999;
padding-bottom: 5px;
margin-bottom: 5px;
}
.the-list li:nth-child(100n) {
border-bottom: 1px solid #888;
padding-bottom: 5px;
margin-bottom: 5px;
}