MediaWiki:Common.css: Difference between revisions

From Try-AS/400
Jump to navigation Jump to search
Terminal screen
reduce to monochrome
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
/* Terminal-style output */
/* Terminal-style output */


.terminal {
.terminalscreen {
     background: #000;
     background: #000;
     color: #d0d0d0;
    border: 1px solid #444;
     font-family: Consolas, Monaco, "Courier New", monospace;
     color: #00ff00;
     font-size: 14px;
     font-family: monospace;
     line-height: 1.2;
     min-height: 24em;
     overflow: auto;
     padding: 1em;
     padding: 1em;
    border: 1px solid #444;
    border-radius: 4px;
    overflow-x: auto;
     white-space: pre;
     white-space: pre;
}
     width: 80ch;
 
.terminal-green {
     color: #00ff00;
}
 
.terminal-red {
    color: #ff6060;
}
 
.terminal-yellow {
    color: #ffff60;
}
 
.terminal-blue {
    color: #80c0ff;
}
}

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