MediaWiki:Monobook.css: Difference between revisions

From CNM Wiki
Jump to navigation Jump to search
m (reduce footer margin and padding (same as on "Inside"))
 
m (set @media to customize screen appearance only)
Line 1: Line 1:
/* CSS placed here will affect users of the Monobook skin */
/* CSS placed here will affect users of the Monobook skin */
/* parent styles:  https://wiki.inside.anl.gov/wiki_cnm/skins/monobook/main.css */


/* https://wiki.inside.anl.gov/wiki_cnm/skins/monobook/main.css
/* http://www.w3.org/TR/CSS2/media.html */
*  http://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_change_the_footer.3F
@media screen {
*/
 
#footer {
  /*  http://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_change_the_footer.3F */
  #footer {
background: none;
background: none;
border-top: none;
border-top: none;
Line 10: Line 12:
margin: 0 0 1em 0;
margin: 0 0 1em 0;
padding: 0;
padding: 0;
/*
  }
margin: .6em 0 1em 0;
 
padding: .4em 0 1.2em 0;
text-align: center;
font-size: 90%;
*/
}
}

Revision as of 16:00, November 26, 2008

/* CSS placed here will affect users of the Monobook skin */
/* parent styles:  https://wiki.inside.anl.gov/wiki_cnm/skins/monobook/main.css */

/* http://www.w3.org/TR/CSS2/media.html */
@media screen {

  /*  http://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_change_the_footer.3F */
  #footer {
	background: none;
	border-top: none;
	border-bottom: none;
	margin: 0 0 1em 0;
	padding: 0;
  }

}