.color {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 50px;
  height: 20px;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  cursor: pointer;
}

@media only screen and (max-width: 999px) {
  .color {
    width: 25px;
  }
}

@media only screen and (max-width: 699px) {
  .color {
    width: 20px;
  }
}

body {
  background-color: black;
  color: #AAAAAA;
  font-family: "Source Code Pro";
}

#editor-container {
  position: relative;
  width: 99%;
  height: 150px;
  margin-bottom: 15px;
}

#editor-container, #textInput, #highlightLayer {}

#textInput, #highlightLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 99%;
  height: 100%;
  margin: 0;
  padding: 5px;
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  line-height: 1.25;
  background-color: transparent;
  color: #AAAAAA;
  white-space: pre-wrap;
  border: 1px solid #ccc;
  overflow: scroll;
  box-sizing: border-box;
}

#highlightLayer {
  z-index: 0;
  pointer-events: none;
}

.highlight {
  color: #696969;
  font-weight: bold;

}

.highlightNormal {
  color: #3a3a3a;
  font-weight: bold;
}

.footer {
  position: relative;
  right: 10px;
  text-align: right;
  width: 100%;
}

a {
  color: #AAAAAA;
}