MediaWiki:Common.css: Difference between revisions

From Dragon Realm Wiki
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 */


/* Hack to make pre tags wrap */
pre {
pre {
overflow-x: auto; /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */
  white-space: normal;
  white-space: pre-wrap; /* css-3 */
}
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
 
white-space: -pre-wrap; /* Opera 4-6 */
/* Terminal-styled pre tags */
white-space: -o-pre-wrap; /* Opera 7 */
.terminal{
/* width: 99%; */
background-color:black !important;
word-wrap: break-word; /* Internet Explorer 5.5+ */
color:white !important;
}
}

Revision as of 00:10, 17 June 2011

/* CSS placed here will be applied to all skins */

/* Hack to make pre tags wrap */
pre {
 white-space: normal;
}

/* Terminal-styled pre tags */
.terminal{
	background-color:black !important;
	color:white !important;
}