MediaWiki:Common.css: Difference between revisions

From Try-AS/400
Jump to navigation Jump to search
CSS-Test
 
reduce to monochrome
 
(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 */


/* CSS placed here will be applied to all skins
/* Terminal-style output */


.code_blue {
.terminalscreen {
color: Lime;
    background: #000;
background: black;
    border: 1px solid #444;
font-weight: normal;
    color: #00ff00;
font-style: normal;
    font-family: monospace;
}
    min-height: 24em;
 
    overflow: auto;
/* Kuck mal hier: https://www.wurst-wasser.net/wiki/index.php/Sandbox#Terminal-Sandbox */
    padding: 1em;
 
    white-space: pre;
pre {
    width: 80ch;
color: Lime;
background: black;
font-weight: normal;
font-style: normal;
width: 640px;
padding: 10px;
border: 4px solid lightgray;
}
}

Latest revision as of 14:43, 4 June 2026

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

/* Terminal-style output */

.terminalscreen {
    background: #000;
    border: 1px solid #444;
    color: #00ff00;
    font-family: monospace;
    min-height: 24em;
    overflow: auto;
    padding: 1em;
    white-space: pre;
    width: 80ch;
}