::selection {
  background: #FF5E99;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}
body {
  font-size: 12px;
  font-family: Inconsolata, monospace;
  color: white;
  background-color: white;
  /*-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;*/
}
.dropping {
  background-image: -webkit-gradient(
    linear, left bottom, left top,
    color-stop(0.13, rgb(209,144,23)),
    color-stop(0.57, rgb(251,173,51)),
    color-stop(0.79, rgb(255,208,77))
  );
  background-image: -moz-linear-gradient(
    center bottom,
    rgb(209,144,23) 13%,
    rgb(251,173,51) 57%,
    rgb(255,208,77) 79%
  )
}
#container {
  padding: 1em 1.5em 1em 1em;
  /*overflow: hidden;
  white-space: nowrap;*/
}
#container output {
  clear: both;
  width: 100%;
}
#container output h3 {
  margin: 0;
}
#container output pre {
  margin: 0;
}
.input-line {
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  clear: both;
}
.input-line > div:nth-child(2) {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
}
.prompt {
  white-space: nowrap;
  color: green;
  margin-right: 7px;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-box-pack: center;
  -moz-box-orient: vertical;
  display: box;
  box-pack: center;
  box-orient: vertical;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.cmdline {
  outline: none;
  background-color: transparent;
  margin: 0;
  width: 100%;
  font: inherit;
  border: none;
  color: inherit;
}
.folder {
  color: blue;
}
.ls-files {
  height: 45px;
  /* Default, but changed by js depending on length of filename */
  -webkit-column-width: 100px;
  -moz-column-width: 100px;
  -o-column-width: 100px;
  column-width: 100px;
}

/* Terminal Box */
.screenMix {
    background-color: #212121;
    margin-top: -5px;
    height: 10px;
    margin-bottom: -5px;
    width:50%;
    margin-left: 25%;
    margin-right:25%;

}
.screen {
    border-radius: 5px;
    background-color: #212121;
    height: 60%;
    width: 50%;
    margin-left: 25%;
    margin-right:25%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 10px 24px 0 rgba(0, 0, 0, 0.19);
}
.screen-top {
    border-radius: 5px;
    top: -5px;
    height : 25px;
    width: 50%;
    margin-left: 25%;
    margin-right:25%;
    background-color: #AAA;
    overflow-y: visible;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 10px 24px 0 rgba(0, 0, 0, 0.19);
}
.header {
    overflow-x: hidden;
}
.prompt {
  color: #E2AE6D;
}
.cmdline {
    color: #FFDCAD;
}
/* Themes */
body.cream {
  color: black;
  background-color: #fffff3;
}
.cream .prompt {
  color: purple;
}
.cream .cmdline {
  color: black;
}
