MediaWiki:Common.css: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* === overall site appearance == */
/* Tektronix plot background */
/* Tektronix plot background */
body, #mw-head{
body, #mw-head{
Line 16: Line 19:
#footer {
#footer {
background: #ddffff;
background: #ddffff;
}
/* hierarchical (outline-style) numbering */
ol {
  counter-reset: listNum;
  list-style-type: none;
}
ol > li:before {
  counter-increment: listNum;
  content: counters(listNum, ".") ".";
}
}

Revision as of 17:14, 8 November 2020

/* 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, ".") ".";
}