/**
 * style.css (https://github.com/chjj/tty.js)
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 */

html, body {
  margin: 0;
  padding: 0;
}

div {
  border: 0;
  padding: 0;
  margin: 0;
}

html {
  background: #333;
  overflow: hidden;
}

/* Only allow plaintext?
[contenteditable=""],
[contenteditable="true"] {
  -webkit-user-modify: read-write-plaintext-only !important;
}
*/

/**
 * Terminal
 */

.window {
  padding-top: 20px;
  background: #272829;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 13px;
  padding: 2px 0;
  font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
  color: #fafafa;
}

.title {
  position: absolute;
  right: 5px;
  top: 4px;
  font-size: 11px;
  cursor: default;
}

.tab {
  font-size: 12px;
  margin-left: 8px;
  margin-top: 2px;
  float: left;
  cursor: pointer;
}

.tab:hover {
  font-weight: bold;
}

.tab.new {
  margin-right: 10px;
  font-size: 21px;
  margin-top: -4px;
  color: #999;
}

.tab.close {
  font-size: 20px;
  margin-top: -4px;
  color:#b00;
}

.tab.tty {
  margin-left: 10px;
  margin-right: 10px;
}

.terminal {
  outline: none;
  border: #000 solid 5px;
  font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
  font-size: 11px;
  color: #f0f0f0;
  background: #000;
  width: 100%;
  height: 100%;
}

.reverse-video {
  color: #000;
  background: #f0f0f0;
}
