MediaWiki:Common.css

From Woozle Writes Code
Revision as of 22:51, 24 November 2021 by Woozle (talk | contribs)
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 */

/* === overall site appearance == */

/* Tektronix plot background */
body, #mw-head{
    background: url("/custom/bg.jpg");            /**/
}
#p-personal ul li {
    background: #ccddff;
}
.portal { /* navigation area */
    background: #ddffdd;
    border: 2px solid #006600;
}
#p-cactions-label {
	background: #ddffff;
}
#footer {
	background: #ddffff;
}

/* hierarchical (outline-style) numbering */

ol {
  counter-reset: listNum;
  list-style-type: none;
}

ol > li:before {
  counter-increment: listNum;
  content: counters(listNum, ".") ".";
}

/* make links stand out more */
.keychainify-checked {
	border-bottom: dashed 1px grey;
	text-shadow: -2px 2px 2px #666;
}