MediaWiki:Common.css: Difference between revisions

From Try-AS/400
Jump to navigation Jump to search
Revert
Terminal screen
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Terminal-style output */
.terminal {
    background: #000;
    color: #d0d0d0;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 14px;
    line-height: 1.2;
    padding: 1em;
    border: 1px solid #444;
    border-radius: 4px;
    overflow-x: auto;
    white-space: pre;
}
.terminal-green {
    color: #00ff00;
}
.terminal-red {
    color: #ff6060;
}
.terminal-yellow {
    color: #ffff60;
}
.terminal-blue {
    color: #80c0ff;
}

Revision as of 14:20, 4 June 2026

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

/* Terminal-style output */

.terminal {
    background: #000;
    color: #d0d0d0;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 14px;
    line-height: 1.2;
    padding: 1em;
    border: 1px solid #444;
    border-radius: 4px;
    overflow-x: auto;
    white-space: pre;
}

.terminal-green {
    color: #00ff00;
}

.terminal-red {
    color: #ff6060;
}

.terminal-yellow {
    color: #ffff60;
}

.terminal-blue {
    color: #80c0ff;
}