MediaWiki:Common.css: Difference between revisions

From Dragon Realm Wiki
No edit summary
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


pre {
/* Terminal-styled pre tags */
  overflow-x: auto; /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */
.terminal{
  white-space: pre-wrap; /* css-3 */
  background-color: black;
  white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
  color: white;
  white-space: -pre-wrap; /* Opera 4-6 */
  font-family:monospace;
  white-space: -o-pre-wrap; /* Opera 7 */
  font-size:12px;
  /* width: 99%; */
  float:left;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  clear:both;
  border:0px;
}
}

Latest revision as of 19:28, 18 June 2011

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

/* Terminal-styled pre tags */
.terminal{
 background-color: black;
 color: white;
 font-family:monospace;
 font-size:12px;
 float:left;
 clear:both;
 border:0px;
}