@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,600');

html, body {
  font-family: 'Source Code Pro', monospace;
  margin: 0;
  background-color: #0f0f0f;
  color: #fff;
  /*font-size: 110%;*/
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  background-color: #0f0f0f;
  width: 5px;
}

*::-webkit-scrollbar-track {
  background-color: #0f0f0f;
}

*::-webkit-scrollbar-thumb {
  background-color: #333;
}
p {
  margin: 0;
}
a {
  color: #08f;
  text-decoration: none;
}
a:hover {
  color: #08f;
  text-decoration: underline;
}
.terminal {
  margin-left: 10px;
  margin-bottom: 10px;
  overflow-y: auto;
  max-height: 100vh;
  margin-right: 250px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.term-history > p {
  word-wrap: break-word;
}
.term-index.red1 { color: #fc5c65; }
.term-index.red2 { color: #eb3b5a; }
.term-index.blue1 { color: #45aaf2; }
.term-index.blue2 { color: #4b7bec; }
.term-index.blue3 { color: #48dbfb; }
.term-index.blue4 { color: #5352ed; }
.term-index.green1 { color: #2ed573; }
.term-index.green2 { color: #1dd1a1; }
.term-index.green3 { color: #26de81; }
.term-index.purple1 { color: #a55eea; }
.term-index.purple2 { color: #5f27cd; }
.term-index.pink { color: #f368e0; }
.term-index.orange { color: #fd9644; }
.term-index.yellow { color: #fed330; }

.term-newline {
  width: 100%;
  max-width: 100%;
  display: flex;
}
.term-newline > .term-index {
  width: auto;
  display: inline-block;
}
.term-newline-textarea {
  width: 100%;
  max-width: 100%;
  outline: none;
  display: inline-block;
  margin-left: 10px;
  word-break: break-all;
}
.onlinelist {
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  background-color: rgba(0, 0, 0, 0.2);
}
#users {
  overflow-y: auto;
}
.useritem {
  padding: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.useritem::before {
  content: '● ';
  color: #2ecc71;
}
