MediaWiki:Common.css

From Project Arrhythmia Wiki
Jump to navigation Jump to search

Note: After publishing, 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: Press Ctrl-F5.
/***** CSS placed here will be applied to all skins on the entire site. *****/

/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Inconsolata:300');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


/**
 * Tree style lists
 * @source mediawiki.org/wiki/Snippets/Treeview
 * @revision 2.0 (2021-09-05)
 * @author (unknown)
  
  Adapted for this wiki by User:Catix
 */
 
/**
 * Modified
 */
.treeview ul,
.treeview li {
  margin:0;
  padding:0;
  list-style-type:none;
  list-style-image:none
}
.treeview li li {
  position:relative;
  padding-left:13px;
  margin-left:7px;
  border-left:1px solid #636363
}
.treeview li li::before {
  content:"";
  position:absolute;
  top:0;
  left:-1px;
  width:11px;
  height:11px;
  border-bottom:1px solid #636363
}
.treeview li li:last-child:not(.treeview-continue) {
  border-color:transparent
}
.treeview li li:last-child:not(.treeview-continue)::before {
  border-left:1px solid #636363;
  width:10px
}