*[data-markup-hidden] {
  display:none;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

#markedup {
  width: 100%;
  min-height: 100%;
}
#markup {
  width: 100%;
  height: 100%;
}

#content {
  position: relative;
  width: 80%;
  margin: auto;
  height: 100%;
}

#markedup, #markup {
  background-color: rgb(255,255,200);
}

#edit {
  position: fixed;
  right: 10px;
  top: 10px;
  display: block;
  float: right;
  padding-right: 10px;
}

#edit div {
  background-color: rgba(255,255,200,1);
  cursor: pointer;
  border: 1px dotted black;
  border-radius: 5px;
  margin: 4px;
  padding: 2px 4px;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

#edit div:hover {
  background-color: rgba(255,255,160,1);
}

#edit div.disabled {
  color: rgba(0,0,0,0.3);
  background: white;
  cursor: auto;
}
