MediaWiki:Common.css: Difference between revisions
From ScanzWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
body { | body { | ||
counter-reset: h2Counter h3Counter h4Counter h5Counter tableCounter; | counter-reset: h2Counter h3Counter h4Counter h5Counter h6Counter tableCounter; | ||
} | } | ||
.revision { | .revision { | ||
| Line 17: | Line 17: | ||
.rulesNumbering h2 { | .rulesNumbering h2 { | ||
counter-reset: h3Counter h4Counter h5Counter; | counter-reset: h3Counter h4Counter h5Counter h6Counter; | ||
counter-increment: h2Counter; | counter-increment: h2Counter; | ||
} | } | ||
| Line 33: | Line 33: | ||
.rulesNumbering h3 { | .rulesNumbering h3 { | ||
counter-reset: h4Counter h5Counter; | counter-reset: h4Counter h5Counter h6Counter; | ||
counter-increment: h3Counter; | counter-increment: h3Counter; | ||
} | } | ||
| Line 41: | Line 41: | ||
.rulesNumbering h4 { | .rulesNumbering h4 { | ||
counter-reset: h5Counter; | counter-reset: h5Counter h6Counter; | ||
counter-increment: h4Counter; | counter-increment: h4Counter; | ||
} | } | ||
| Line 48: | Line 48: | ||
} | } | ||
.rulesNumbering h5 { | .rulesNumbering h5 { | ||
counter-reset: h6 Counter; | |||
counter-increment: h5Counter; | counter-increment: h5Counter; | ||
} | } | ||
.rulesNumbering h5:before { | .rulesNumbering h5:before { | ||
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) "." counter(h5Counter) " "; | content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) "." counter(h5Counter) " "; | ||
.rulesNumbering h6 { | |||
counter-increment: h6Counter; | |||
} | |||
.rulesNumbering h6:before { | |||
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) "." counter(h5Counter) "." counter(h6Counter) "" "; | |||
/* styling for ordered lists */ | /* styling for ordered lists */ | ||
Revision as of 01:42, 5 July 2025
/* CSS placed here will be applied to all skins */
/* section-based ol numbering*/
body {
counter-reset: h2Counter h3Counter h4Counter h5Counter h6Counter tableCounter;
}
.revision {
background:#00ffff;
}
.note{
background:#00FF00;
}
.rulesNumbering .toc ul {
list-style-type: none;
}
.rulesNumbering h2 {
counter-reset: h3Counter h4Counter h5Counter h6Counter;
counter-increment: h2Counter;
}
.rulesNumbering h2:before {
content: counter(page) "." counter(h2Counter) " ";
}
/* this is required to stop the 'contents' heading in the ToC from becoming '1 contents' */
.rulesNumbering .toctitle h2 {
counter-increment: none;
}
.rulesNumbering .toctitle h2:before {
content: none;
}
.rulesNumbering h3 {
counter-reset: h4Counter h5Counter h6Counter;
counter-increment: h3Counter;
}
.rulesNumbering h3:before {
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) " ";
}
.rulesNumbering h4 {
counter-reset: h5Counter h6Counter;
counter-increment: h4Counter;
}
.rulesNumbering h4:before {
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) " ";
}
.rulesNumbering h5 {
counter-reset: h6 Counter;
counter-increment: h5Counter;
}
.rulesNumbering h5:before {
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) "." counter(h5Counter) " ";
.rulesNumbering h6 {
counter-increment: h6Counter;
}
.rulesNumbering h6:before {
content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) "." counter(h5Counter) "." counter(h6Counter) "" ";
/* 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 ol>li>ol>li>ol>li>ol{
list-style-type: decimal;
}
.rulesNumbering ul{
text-indent: 0px;
list-style-type: circle;
}
.rulesNumbering ul>li>ul {
text-indent: 0px;
list-style-type: circle;
}
.rulesNumbering ul>li>ul>li>ul {
text-indent: 0px;
list-style-type: circle;
}
caption:before {
counter-increment: tableCounter;
content: "Table ".counter(page) "." counter(tableCounter);
}
/* Giving table borders */
table.withBorders {
border-collapse: collapse;
}
.withBorders, .withBorders th, .withBorders td {
border: 2px solid black;
}
/* hide toolbox initially */
#div#p-tb {
# visibility: hidden;
#}
/* page styling */
div#mw-panel{
margin-top:10em;
width:20em;
font-size: 1em;
}
div#content{
margin-left: 21em;
}
div#left-navigation{
margin-left: 21em;
margin-top: 17.5em;
}
div#right-navigation{
margin-top: 17.5em;
}
div#footer{
margin-left: 21em;
}
div#mw-head-base {
margin-left: 21em;
height:20em;
}
div#p-logo {
width: 15em;
height: 20em;
top: -19em;
}
.mw-wiki-logo{
width: 20em !important;
height: 20em !important;
}
div#mw-panel div.portal div.body ul li {
font-size: 0.875em;
}