body {
  margin: 0;
  font-family: "Open Sans",Helvetica,Arial,sans-serif;
}

body > h1 {
  margin: 0;
  height: 40px;
  font-size: 1.5em;
  font-weight: normal;
  margin-left: 10px;
}

#editor-container {
  width: 100%;
  height: 60%;
}

#sidebar {
  display: inline-block;
  width: 180px;
  height: -moz-calc(100% - 20px);
  height: -webkit-calc(100% - 20px);
  height: calc(100% - 20px);
  float: left;
  margin: 5px;
}

#editor {
  display: inline-block;
  width: -moz-calc(100% - 200px);
  width: -webkit-calc(100% - 200px);
  width: calc(100% - 200px);
  height: 100%;
  font-size: 1.5em;
}

#create-file-input {
    width: 154px;
}

#create-file-button {
  text-decoration: none;
  font-weight: bold;
  float: right;
  margin: 2px 0 0 8px;
}

#file-list {
  max-height: -moz-calc(100% - 26px);
  max-height: -webkit-calc(100% - 26px);
  max-height: calc(100% - 26px);
  margin: 5px 0;
  padding: 0;
  list-style-type: none;
  overflow: auto;
}

.file a {
  text-decoration: none;
}

.file input {
    width: 154px;
}

.filename {
  display: inline-block;
  min-width: -moz-calc(100% - 32px);
  min-width: -webkit-calc(100% - 32px);
  min-width: calc(100% - 32px);
  color: #000;
  height: 20px;
  word-wrap: break-word;
}

.rename-file {
  margin-left: 10px;
  padding-top: 2px;
  font-size: 0.8em;
}

.remove-file {
  padding-top: 2px;
}

.file-selected {
  font-weight: bold;
  background-color: #e8e8e8;
}
