MediaWiki:Common.css: Difference between revisions

From Dragon Realm Wiki
No edit summary
No edit summary
 
(4 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 */
/* Hack to make pre tags wrap */
pre {
width:500px;
overflow-x: auto; /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
/* width: 99%; */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}


/* Terminal-styled pre tags */
/* Terminal-styled pre tags */
.terminal{
.terminal{
background-color: #F9F9F9;
background-color: black;
border: 1px dashed #2F6FAB;
color: white;
color: black;
font-family:monospace;
font-family: "Courier New", Courier, mono;
font-size:12px;
font-size: 12px;
float:left;
font-style: italic;
clear:both;
line-height: 1.1em;
border:0px;
padding: 1em;
margin: 0 0 0.8em;  
}
}

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;
}