MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Terminal screen |
80x24 |
||
| Line 5: | Line 5: | ||
.terminal { | .terminal { | ||
background: #000; | background: #000; | ||
color: # | color: #00ff00; | ||
font-family: | font-family: monospace; | ||
width: 80ch; | |||
min-height: 24em; | |||
white-space: pre; | |||
overflow: auto; | |||
padding: 1em; | padding: 1em; | ||
} | } | ||
Revision as of 14:23, 4 June 2026
/* CSS placed here will be applied to all skins */
/* Terminal-style output */
.terminal {
background: #000;
color: #00ff00;
font-family: monospace;
width: 80ch;
min-height: 24em;
white-space: pre;
overflow: auto;
padding: 1em;
}
.terminal-red {
color: #ff6060;
}
.terminal-yellow {
color: #ffff60;
}
.terminal-blue {
color: #80c0ff;
}