Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
Jemaleddin (talk | contribs) |
Jemaleddin (talk | contribs) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
content: counter(raw) " - "; | content: counter(raw) " - "; | ||
} | } | ||
.the-list li:nth-child( | .the-list li:nth-child(25n) { | ||
border-bottom: 1px solid # | border-bottom: 1px dashed #aaa; | ||
padding-bottom: 5px; | |||
margin-bottom: 5px; | |||
} | |||
.the-list li:nth-child(50n) { | |||
border-bottom: 1px dotted #999; | |||
padding-bottom: 5px; | |||
margin-bottom: 5px; | |||
} | |||
.the-list li:nth-child(100n) { | |||
border-bottom: 1px solid #888; | |||
padding-bottom: 5px; | |||
margin-bottom: 5px; | |||
} | } |
Latest revision as of 09: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 dashed #aaa; padding-bottom: 5px; margin-bottom: 5px; } .the-list li:nth-child(50n) { border-bottom: 1px dotted #999; padding-bottom: 5px; margin-bottom: 5px; } .the-list li:nth-child(100n) { border-bottom: 1px solid #888; padding-bottom: 5px; margin-bottom: 5px; }