MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
counter-reset: h2Counter; | counter-reset: h2Counter; | ||
counter-reset: h3Counter; | counter-reset: h3Counter; | ||
counter-reset: h4Counter | |||
} | } | ||
| Line 10: | Line 11: | ||
counter-increment: h2Counter; | counter-increment: h2Counter; | ||
counter-reset: h3Counter; | counter-reset: h3Counter; | ||
counter-reset: h4Counter; | |||
} | } | ||
.rulesNumbering h2:before { | .rulesNumbering h2:before { | ||
| Line 20: | Line 22: | ||
} | } | ||
.rulesNumbering h3 { | .rulesNumbering h3 { | ||
counter-increment: h3Counter; | counter-increment: h3Counter; | ||
counter-reset: h4Counter; | |||
} | } | ||
.rulesNumbering h3:before { | .rulesNumbering h3:before { | ||
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) " "; | content: counter(page) "." counter(h2Counter) "." counter(h3Counter) " "; | ||
.rulesNumbering h4 { | |||
counter-increment: h4Counter; | |||
} | } | ||
.rulesNumbering h4:before { | |||
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Conter) " "; | |||
/* | /* styling for ordered lists */ | ||
.rulesNumbering | .rulesNumbering ol { | ||
list-style-type: decimal; | |||
list-style-type: | |||
} | } | ||
.rulesNumbering ol>li>ol{ | |||
.rulesNumbering | list-style-type: lower-alpha; | ||
list-style-type: | |||
} | } | ||
.rulesNumbering | .rulesNumbering ol>li>ol>li>ol{ | ||
list-style-type: lower-roman; | |||
} | } | ||
Revision as of 03:50, 17 June 2018
/* CSS placed here will be applied to all skins */
/* section-based ol numbering*/
body {
counter-reset: h2Counter;
counter-reset: h3Counter;
counter-reset: h4Counter
}
.rulesNumbering h2 {
counter-increment: h2Counter;
counter-reset: h3Counter;
counter-reset: h4Counter;
}
.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;
}
.rulesNumbering h3 {
counter-increment: h3Counter;
counter-reset: h4Counter;
}
.rulesNumbering h3:before {
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) " ";
.rulesNumbering h4 {
counter-increment: h4Counter;
}
.rulesNumbering h4:before {
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Conter) " ";
/* styling for ordered lists */
.rulesNumbering ol {
list-style-type: decimal;
}
.rulesNumbering ol>li>ol{
list-style-type: lower-alpha;
}
.rulesNumbering ol>li>ol>li>ol{
list-style-type: lower-roman;
}
.rulesNumbering ul>li {
text-indent: 0px;
}
/* Giving table borders */
table.withBorders {
border-collapse: collapse;
}
.withBorders, .withBorders th, .withBorders td {
border: 2px solid black;
}