MediaWiki:Common.css

From NST Wiki
Jump to navigationJump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/** CSS placed here will be applied to all skins */

/* Classes for rendering computer screen output. */

.screen {
  background-color: black;
  color: green;
  line-height: 100%;
  border-style: solid;
  border-color: #888888;
}

.screenTitle {
  background-color: blue;
  color: white;
  padding: 4px;
}

.userInput {
  font-size: 100%;
  font-family: monospace;
  color: yellow;
  background-color: black;
  padding: 0px;
  margin: 0px;
  border-style: none;
}

.prompt {
  color: #888888;
  background-color: black;
}

.computerOutput {
  white-space: pre;
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  line-height: 100%;
  color: green;
  background-color: black;
  border-style: none;
}

/* For program listings. */

.programListing {
  color: black;
  background-color: #CCFFCC;
}