Difference between revisions of "MediaWiki:Common.css"

From GMOD
Jump to: navigation, search
(New page: /** CSS placed here will be applied to all skins */ Don't display Main Page on main page. Code from the MediaWiki Manual FAQ.: body.page-Main_Page h1.firstHeading { display:none...)
 
m (Added guideline class)
Line 5: Line 5:
 
body.page-Main_Page h1.firstHeading {  
 
body.page-Main_Page h1.firstHeading {  
 
   display:none;  
 
   display:none;  
 +
}
 +
 +
 +
/* Used in Site Guidelines page to highlight guidelines */
 +
.guideline {
 +
  font-weight: bold;
 +
  color: green;
 
}
 
}

Revision as of 22:40, 14 December 2007

/** CSS placed here will be applied to all skins */
 
/* Don't display Main Page on main page.  Code from the MediaWiki Manual FAQ. */
 
body.page-Main_Page h1.firstHeading { 
  display:none; 
}
 
 
/* Used in Site Guidelines page to highlight guidelines */
.guideline {
  font-weight: bold;
  color: green;
}