MediaWiki:Common.css: Difference between revisions
From MediaWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
background-color: blue; | background-color: blue; | ||
color: white; | color: white; | ||
padding: 1%; | padding-left: 1%; | ||
} | } | ||
Line 32: | Line 32: | ||
color: #33FF33; | color: #33FF33; | ||
background-color: black; | background-color: black; | ||
padding-left: 1% | |||
} | } | ||
Line 37: | Line 38: | ||
white-space: pre; | white-space: pre; | ||
margin: 0px; | margin: 0px; | ||
padding: 1%; | padding-left: 1%; | ||
font-size: 100%; | font-size: 100%; | ||
line-height: 1.2em; | line-height: 1.2em; |
Revision as of 23:48, 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: 1.2em;
border-style: solid;
border-width: 4px;
border-color: #a9a9a9;
}
.screenTitle {
background-color: blue;
color: white;
padding-left: 1%;
}
.userInput {
font-size: 100%;
font-family: monospace;
font-weight: bold;
color: yellow;
background-color: black;
padding: 0px;
margin: 0px;
border-style: none;
}
.prompt {
color: #33FF33;
background-color: black;
padding-left: 1%
}
.computerOutput {
white-space: pre;
margin: 0px;
padding-left: 1%;
font-size: 100%;
line-height: 1.2em;
color: #33FF33;
background-color: black;
border-style: none;
}
/* For program listings. */
.programListing {
}