/* app css stylesheet */

body{
  font-family: arial, sans-serif;
  margin: 30px;
}

.menu {
  list-style: none;
  border-bottom: 0.1em solid black;
  margin-bottom: 2em;
  padding: 0 0 0.5em;
}

.menu:before {
  content: "[";
}

.menu:after {
  content: "]";
}

.menu > li {
  display: inline;
}

.menu > li:before {
  content: "|";
  padding-right: 0.3em;
}

.menu > li:nth-child(1):before {
  content: "";
  padding: 0;
}

nav{
  font-size: 8pt;
}

nav a{
  display: inline-block;
  margin: 5px;
  padding: 5px;
  color: rgb(198, 208, 218);
  text-decoration: none;
  border: 1px solid rgb(198, 208, 218);
}

nav a:hover{
  color: rgb(237, 129, 81);
  border: 1px solid rgb(237, 129, 81);
}

nav a.active{
  color: white;
  background-color: #34495e;
}

h2{
  font-size: 14pt;
  border-bottom: 1px solid #34495e;
  position: relative;
  color: #34495e;
}

span.element{
  font-weight: bold;
}

span.delete {
  color: red;
  vertical-align: top;
  font-size: 70%;
  cursor: pointer;
}

span.children{
  font-size: 80%;
}

.add{
  position: absolute;
  left: 240px;
  top:0;
}

.add input, .add button{
  font-size: 60%;
  margin: 0;
}
.indent{
  margin-left: 40px;
}

.box{
  border-left: 4px solid #34495e;
  margin-bottom: 20px;
  padding-left: 10px;
}