MediaWiki:Common.css

From ICMS
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */

.debate-point-stats {
  font-size: 75%;
  color: blue;
  margin-left: 1em;
}

.dpoint-details {
  font-family: serif;
  color: #444;
  display: block;
  border: 1px solid blue;
  background-color: #def;
  padding: 0.5em;
}


.dpoint-response {
  margin-left: -1.5em;          /* reduce the list indent -- there's got to be a better way... */
  border-left: dotted blue 1px; /* not ideal, but still helpful? vertical lines to show indentation amount */
}

/* hierarchical (outline-style) numbering */
 
ol {
  counter-reset: listNum;
  list-style-type: none;
}
 
ol > li:before {
  counter-increment: listNum;
  content: counters(listNum, ".") ".";
}