Difference between revisions of "MediaWiki:Common.css"

From WarRocketWiki
Jump to navigation Jump to search
Line 6: Line 6:
   counter-increment: raw;  
   counter-increment: raw;  
   content: counter(raw) " - ";  
   content: counter(raw) " - ";  
}
.the-list li:nth-child(100) {
  border-bottom: 1px solid #444;
}
}

Revision as of 08:39, 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(100) {
  border-bottom: 1px solid #444;
}