body {
  background: #000
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAQMAAABJtOi3AAAABlBMVEUAAAD+/v7KB/Q9AAAAAnRSTlMAM8lDrC4AAAAQSURBVAhbY1zFAAMNg5EFALt0CCw/8KEzAAAAAElFTkSuQmCC);
}

#editor-screen,
#editor-contents {
  /* dimensions are assigned later via JS */
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-left: none;
  border-top: none;
}

#editor-cursor {
  position: absolute;
  width: 31px;
  height: 31px;
  margin-top: -1px;
  margin-left: -1px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
  outline: 1px dotted #00ff00;
  z-index: 2;
  top: -999px;
  left: -999px;
  transition: all 0.2s ease-out;
  transition-property: opacity, transform;
}

#editor-cursor.active {
  transform: scale3d(0, 0, 1);
}

#editor-contents .type-0,
#editor-contents .type-1,
#editor-contents .type-2,
#editor-contents .type-3,
#editor-contents .type-4 {
  transition: all 0.2s ease-in-out;
}

#editor-contents .animate-in {
  transform: scale3d(1, 1, 1);
}

#editor-controls {
  position: fixed;
  top: 32px;
  left: 32px;
  font-family:
    monaco, 'Andale Mono', 'VT-100', 'Lucida Console', 'Courier New', monospace,
    courier, system, sans-serif;
  font-weight: normal;
  font-size: 10px;
  line-height: 10px;
  color: #fff;
  border: 1px dotted #999;
  background: #000;
  background: rgba(0, 0, 0, 0.88);
  padding: 8px;
  z-index: 3;
  color: #ccc;
}

#editor-controls h1,
#editor-controls h2 {
  color: #fff;
}

#editor-controls h1,
#editor-controls h2,
#editor-controls p {
  line-height: 1.4em;
}

#editor-controls h1 {
  font-size: 12px;
  font-weight: bold;
}

#editor-controls h2 {
  font-size: 10px;
  font-weight: normal;
}

#editor-controls .bd {
  position: relative;
  width: 224px;
}

#editor-controls a {
  color: #99ccff;
  text-decoration: none;
}

#editor-controls a:hover {
  color: #fff;
}

#editor-controls a.cta {
  padding: 3px 8px;
}

#editor-controls a.clear {
  color: #ff9999;
  background: #330000;
  border-color: #660000;
}

#editor-controls a.clear:hover {
  background: #990000;
  color: #fff;
  border-color: #cc3333;
}

#editor-controls p {
  margin: 0.5em 0px 0px 0px;
  padding: 0.5em 0.5em 1em 0px;
}

#editor-controls p:first-child,
#editor-controls p.compact {
  margin-top: 0px;
}

#editor-controls p.compact {
  padding-top: 0px;
}

#editor-controls .keys {
  color: #999;
}

#editor-controls ul.icons {
  list-style-type: none;
  clear: both;
}

#editor-controls ul.icons,
#editor-controls ul.icons li {
  margin: 0px;
  padding: 0px;
}

#editor-controls ul.icons li {
  display: inline-block;
  width: 32px;
  height: 36px;
}

#editor-controls ul.icons li a {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-indent: -99em;
  overflow: hidden;
  outline: 1px dotted #666;
  transform: none;
}

#editor-controls ul.icons li a.delete {
  margin-left: 20px;
}

#editor-controls ul.icons li a.delete,
#editor-cursor.delete {
  background: #222
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABHElEQVR42u2TPQtBYRiGLUSIQZLND7BZDDKQyWIxSP6EwapksfpIBpNVOYNfYlBIshiESQo57uFMb26f71uG96prOvfz0XnOsWk0mr/ENM0Q3MNH1EhNjuTPMPrNEkXS8AQjQtYB5yRf/eVNGKTpSMiVSW4CHapOkbEyAXiAIlcYI62lnGIK7bBNnjdIS6mn6MELFJlBl9q/gnODCdJK4ik4LbFW/ik4K+hRuUATPsNQOTxp3fcVeRXD3XAJ32ELg7IX6NAv/jFDmcNTZNAZZuGRLFGQMdwLV2RA3cpUyPMdDP26QI80X0CnlbHDifS/AsUZyEgL2fiT76H0zXAfXJOGA1LTJfkDDH+6QJ8028MgqfHDDakb2zQaDeEOPu/+HMxYkc0AAAAASUVORK5CYII=)
    no-repeat 0px 0px;
  background-color: rgba(0, 0, 0, 0.75);
}

#editor-screen .block.type-1,
#editor-screen .block.type-3 {
  /* special display fixes */
  background-position: 0px -96px;
}

#editor-controls ul.icons li a:hover {
  outline: 2px solid #fff;
}

#editor-controls .note {
  color: #666;
}

#editor-controls #map-data {
  display: none;
  width: 100%;
  height: 12em;
  background-color: transparent;
  color: #999;
  overflow: auto;
  border-color: #444;
  padding: 8px;
  font-family:
    monaco, 'Andale Mono', 'VT-100', 'Lucida Console', 'Courier New', monospace,
    courier, system, sans-serif;
  font-size: 6px;
}

#instructions {
  position: relative;
  transition: height 0.25s ease-in-out;
  height: 0px;
  overflow: hidden;
}

#instructions h2 {
  font-size: 11px;
}

#instructions > div {
  color: #ccc;
}
