MediaWiki:Common.css: Difference between revisions
From MediaWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
/* Classes for rendering computer screen output. */ | /* Classes for rendering computer screen output. */ | ||
.screen { | |||
background-color: black; | background-color: black; | ||
color: #33FF33; | color: #33FF33; | ||
Line 33: | Line 33: | ||
} | } | ||
.computerOutput { | |||
white-space: pre; | white-space: pre; | ||
margin: 0px; | margin: 0px; |
Revision as of 23:23, 2 March 2007
/** CSS placed here will be applied to all skins */
/* Classes for rendering computer screen output. */
.screen {
background-color: black;
color: #33FF33;
line-height: 100%;
border-style: solid;
border-color: #888888;
}
.screenTitle {
background-color: blue;
color: white;
padding: 4px;
}
.userInput {
font-size: 100%;
font-family: monospace;
font-weight: bold;
color: yellow;
background-color: black;
padding: 0px;
margin: 0px;
border-style: none;
}
.prompt {
color: #888888;
background-color: black;
}
.computerOutput {
white-space: pre;
margin: 0px;
padding: 0px;
font-size: 100%;
line-height: 100%;
color: #33FF33;
background-color: black;
border-style: none;
}
/* For program listings. */
.programListing {
}