/**
* CSS codes for the simulated console window (and other style features)
*/

/**
* Set the size and appearance of the "console" window and its contents
*/
#results {
  width: 1400px;
  height: 500px;
  border: 1px solid #000;
  padding: 10px;
  overflow: auto;
  background: #000;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height:15px;   /* Needs to be an integer to make scrolling work */
  color: #fff;
  white-space: nowrap;
}

body.waiting * {
  cursor: progress;
}

pre {
  margin: 0;
}
