MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 29: | Line 29: | ||
list-style-type: none; | list-style-type: none; | ||
counter-increment: h2LiCounter; | counter-increment: h2LiCounter; | ||
content: | content: counter(h2LiCounter) " "; | ||
} | } | ||
.rulesNumbering h2+ol>li, h2+*+ol>li{ | .rulesNumbering h2+ol>li, h2+*+ol>li{ | ||
padding-left: | padding-left: 1em; | ||
text-indent: - | text-indent: -1em; | ||
} | } | ||
Line 45: | Line 45: | ||
list-style-type: none; | list-style-type: none; | ||
counter-increment: h2LiLiCounter; | counter-increment: h2LiLiCounter; | ||
content: counter(h2LiLiCounter) " | content: "(" counter(h2LiLiCounter, lower-alpha) ") "; | ||
} | } | ||
.rulesNumbering h2+ol>li>ol>li:, h2+*+ol>li>ol>li:{ | .rulesNumbering h2+ol>li>ol>li:, h2+*+ol>li>ol>li:{ | ||
padding-left: | padding-left: 2em; | ||
text-indent: - | text-indent: -2em; | ||
} | } | ||
Line 69: | Line 69: | ||
list-style-type: none; | list-style-type: none; | ||
counter-increment: h3LiCounter; | counter-increment: h3LiCounter; | ||
content: | content: counter(h3LiCounter) " "; | ||
} | } | ||
.rulesNumbering h3+ol>li, h3+*+ol>li{ | .rulesNumbering h3+ol>li, h3+*+ol>li{ | ||
padding-left: | padding-left: 1em; | ||
text-indent: - | text-indent: -1em; | ||
} | } | ||
Line 84: | Line 84: | ||
list-style-type: none; | list-style-type: none; | ||
counter-increment: h3LiLiCounter; | counter-increment: h3LiLiCounter; | ||
content: counter(h3LiLiCounter) " | content: "(" counter(h3LiLiCounter, lower-alpha) ") "; | ||
} | } | ||
.rulesNumbering h3+ol>li>ol>li, h3+*+ol>li>ol>li{ | .rulesNumbering h3+ol>li>ol>li, h3+*+ol>li>ol>li{ | ||
padding-left: | padding-left: 2em; | ||
text-indent: - | text-indent: -2em; | ||
} | } | ||
Revision as of 11:47, 16 June 2018
/* CSS placed here will be applied to all skins */ /* section-based ol numbering*/ body { counter-reset: h2Counter; counter-reset: h3Counter; } .rulesNumbering h2 { counter-increment: h2Counter; counter-reset: h3Counter; } .rulesNumbering h2:before { content: counter(page) "." counter(h2Counter) " "; } /* this is required to stop the 'contents' heading in the ToC from becoming '1 contents' */ #toctitle h2:before { content: none; } /* get 1.1 before OLs within an h2 */ .rulesNumbering h2+ol, h2+*+ol { counter-reset: h2LiCounter; list-style-type: none; } .rulesNumbering h2+ol>li:before, h2+*+ol>li:before{ list-style-type: none; counter-increment: h2LiCounter; content: counter(h2LiCounter) " "; } .rulesNumbering h2+ol>li, h2+*+ol>li{ padding-left: 1em; text-indent: -1em; } /* Get 1.1.1 numbering for nested OLs within an h2 */ .rulesNumbering h2+ol>li>ol, h2+*+ol>li>ol { counter-reset: h2LiLiCounter; list-style-type: none; } .rulesNumbering h2+ol>li>ol>li:before, h2+*+ol>li>ol>li:before{ list-style-type: none; counter-increment: h2LiLiCounter; content: "(" counter(h2LiLiCounter, lower-alpha) ") "; } .rulesNumbering h2+ol>li>ol>li:, h2+*+ol>li>ol>li:{ padding-left: 2em; text-indent: -2em; } /* get 1.1 numbering for h3s */ .rulesNumbering h3 { counter-increment: h3Counter; } .rulesNumbering h3:before { content: counter(page) "." counter(h2Counter) "." counter(h3Counter) " "; } /* get 1.1.1 numbering for OLs within an h3 */ .rulesNumbering h3+ol, h3+*+ol{ counter-reset: h3LiCounter; list-style-type: none; } .rulesNumbering h3+ol>li:before, h3+*+ol>li:before { list-style-type: none; counter-increment: h3LiCounter; content: counter(h3LiCounter) " "; } .rulesNumbering h3+ol>li, h3+*+ol>li{ padding-left: 1em; text-indent: -1em; } /* get 1.1.1.1 numbering for nested OLs within an h3 */ .rulesNumbering h3+ol>li>ol, h3+*+ol>li>ol { counter-reset: h3LiLiCounter; list-style-type: none; } .rulesNumbering h3+ol>li>ol>li:before, h3+*+ol>li>ol>li:before{ list-style-type: none; counter-increment: h3LiLiCounter; content: "(" counter(h3LiLiCounter, lower-alpha) ") "; } .rulesNumbering h3+ol>li>ol>li, h3+*+ol>li>ol>li{ padding-left: 2em; text-indent: -2em; } .rulesNumbering ul>li { text-indent: 0px; } /* Giving table borders */ table.withBorders { border-collapse: collapse; } .withBorders, .withBorders th, .withBorders td { border: 2px solid black; }