
:root {
    --primary: #debfa2;
}
#page {
  width: 100%;
  height: 100%;
  margin: auto;
  justify-content: center;
  align-content: center;
}

#path {

  padding:4px;
}

#window {
  width: 60%;
  height: 70%;
  justify-self: center;
  border: 2px solid var(--primary);

  display: flex;
  flex-direction: column;
}


/* Extra small devices */
@media only screen and (max-width: 600px) {
  body {
    font-size:1em;
  }
}

/* Small devices */
@media only screen and (min-width: 600px) {
  body {
    font-size:1.1em;
  }
}

/* Medium devices  */
@media only screen and (min-width: 768px) {
  body {
    font-size:1.1em;
  }
} 

/* Large devices  */
@media only screen and (min-width: 999px) {
  body {
    font-size:1.3em;
  }
} 

/* Extra large devices */
@media only screen and (min-width: 1200px) {
  body {
    font-size:1.4em;
  }
}

@media only screen and (min-width: 1800px) {
  body {
    font-size:1.5em;
  }
}

#title {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 4px;
  box-sizing: border-box;
}

#editor {
  display: flex;
  width: 100%;
  height: 100%;
  border-top: 1px solid black;
  box-sizing: border-boxl;
}

.left {
  width: 50%;
  height: 100%;
  overflow:auto;
}

.right {
  width: 50%;
  height: 100%;
  border-left: 1px solid black;
}

ul {
  list-style-type: none;
  margin: 0;
}
li {
  display:block;
}

li span {
  padding: 2px;
  margin: 2px;
  cursor: pointer;
  display:table-cell;
  width: 0.00001%;
}

li span::before {
  white-space: pre;
  content: " ";
  color: white;
  font-family: monospace !important;
  box-sizing: border-box;
  margin-right: 4px;
}

.expandable::before {
  content: "+";
  color: black;
}

.expanded::before {
  content: "-";
  color: black;
}

.nested {
  display: none;
  padding-left: 1em;
}

.active {
  display: block;
}

.selected {
  background: var(--primary);
  color: white;
}

.selected::before {
  color: white;
}
