MediaWiki:Common.css: Difference between revisions

From Lochac Marshal Rules Wiki
Jump to navigation Jump to search
No edit summary
(Replaced content with ".revision { background:#00ffff; } .comment { background:#00FF00; } →‎Giving table borders: table.withBorders { border-collapse: collapse; } .withBorders, .withBorders th, .withBorders td { border: 2px solid black; }")
Tag: Replaced
 
(84 intermediate revisions by 3 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
.revision {
/* section-based ol numbering*/
   background:#00ffff;
 
}
body {
.comment {
   counter-reset: h2Counter;
   background:#00FF00;
   counter-reset: h3Counter;
}
}


#mw-content-text h2 {
/* Giving table borders */
   counter-increment: h2Counter;
table.withBorders {
  counter-reset: h3Counter;
   border-collapse: collapse;
}
#mw-content-text h2:before {
  content: counter(h2Counter) " ";
}
}
#toctitle h2:before {
.withBorders, .withBorders th, .withBorders td {
  content: none;
   border: 2px solid black;
}
#mw-content-text h2+ol, h2+*+ol {
  counter-reset: h2LiCounter;
  list-style-type: none;
}
#mw-content-text h2+ol>li:before, h2+*+ol>li:before{
  list-style-type: none;
  counter-increment: h2LiCounter;
  content: counter(h2Counter) "." counter(h2LiCounter) " ";
}
#mw-content-text h2+ol>li, h2+*+ol>li{
  padding-left: 2em;
  text-indent: -2em;
}
#mw-content-text h3 {
  counter-increment: h3Counter;
}
#mw-content-text h3:before {
  content: counter(h2Counter) "." counter(h3Counter) " ";
}
#mw-content-text h3+ol {
  counter-reset: h3LiCounter;
  list-style-type: none;
}
#mw-content-text h3+ol>li:before {
  list-style-type: none;
  counter-increment: h3LiCounter;
  content: counter(h2Counter) "." counter(h3Counter) "." counter(h3LiCounter) " ";
}
#mw-content-text h3+ol>li{
  padding-left: 3em;
  text-indent: -3em;
}
 
#mw-content-text ul>li {
   text-indent: 0px;
}
}

Latest revision as of 08:17, 15 July 2025

.revision {
  background:#00ffff;
}
.comment {
  background:#00FF00;
}

/* Giving table borders */
table.withBorders {
  border-collapse: collapse;
}
.withBorders, .withBorders th, .withBorders td {
  border: 2px solid black;
}