Jump to content

MediaWiki:Common.css: Difference between revisions

From WarRocketWiki
Created page with "CSS placed here will be applied to all skins: body { counter-reset: raw; } .episode::before { counter-increment: raw; content: counter(section) " - "; }"
 
No edit summary
Line 5: Line 5:
.episode::before {
.episode::before {
   counter-increment: raw;  
   counter-increment: raw;  
   content: counter(section) " - ";  
   content: counter(raw) " - ";  
}
}

Revision as of 08:55, 12 April 2023

/* CSS placed here will be applied to all skins */
body {
  counter-reset: raw; 
}
.episode::before {
  counter-increment: raw; 
  content: counter(raw) " - "; 
}