@import "../../css/fonts/SourceSans/stylesheet.css";
@import "../../css/fonts/SourceCodePro/stylesheet.css";
html,
body {
  height: 100%;
  font-family: 'SourceSans';
  -webkit-font-smoothing: antialiased;
}
pre {
  font-family: 'SourceCodePro';
}
#project-panel {
  background: url("../img/propertiespanel_back@2x.png") repeat-x top #3c3f41;
  width: 200px;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  overflow: auto;
  color: #bbb;
  padding: 10px;
  font-size: 13px;
}
#content {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 30px 25px 200px;
  background: #f8f8f8;
  position: absolute;
  z-index: 1;
  overflow: scroll;
}
#content .inline-editor {
  width: 100%;
  background: #eaeaea;
  position: relative;
  box-sizing: border-box;
  padding: 16px 0;
}
#content .inline-editor header {
  padding: 0 10px;
  width: 100%;
  color: #a1a3a4;
  font-size: 13px;
  margin-bottom: 10px;
}
#content .inline-editor:before,
#content .inline-editor:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  display: block;
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 20%);
}
#content .inline-editor:after {
  top: auto;
  bottom: 0;
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 20%);
}
#content .nested-editor {
  min-height: 80px;
  width: 100%;
  box-shadow: 0 -1px 0 #fff, 0 -2px 0 #ccc, 0 1px 0 #ccc, 0 2px 0 #fff;
  margin: 7px 0;
  box-sizing: border-box;
  padding: 0 18px;
}
#content .codeblock {
  padding: 0 10px;
  width: 100%;
  position: relative;
}
#content .codeblock pre {
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
}
#content .codeblock pre.line-numbers {
  min-width: 17px;
  color: #acacac;
  text-align: right;
}
#content .codeblock pre.code {
  color: #444;
  margin-left: 10px;
}
#toolbar {
  width: 30px;
  height: 100%;
  box-sizing: border-box;
  background: #5d5f60;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
#status-bar {
  font-size: 12px;
  color: #808080;
  width: 100%;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
  box-sizing: border-box;
  padding: 0 0 0 200px;
  z-index: 2;
}
#status-bar #cursor-position,
#status-bar .right > div {
  box-sizing: border-box;
  display: inline-block;
  height: 100%;
}
#status-bar .right {
  display: inline-block;
  float: right;
}
#status-bar .right a {
  text-decoration: none;
  color: #808080;
}
#status-bar .right a:hover {
  text-decoration: underline;
}
#line-count,
#mode,
#indent-type {
  border-right: 1px solid #ebebeb;
  margin-right: -2px;
}
#cursor-position,
#line-count,
#mode a,
#indent-type a,
#indent-size a {
  padding: 6px 9px;
  box-sizing: border-box;
  display: inline-block;
}
#mode a,
#indent-type a {
  position: relative;
  padding-right: 19px;
}
#mode a:after,
#indent-type a:after {
  content: '';
  width: 5px;
  height: 100%;
  background: url("../img/arrows.svg") no-repeat;
  background-position: center left;
  position: absolute;
  right: 9px;
  top: 0;
  margin-top: -1px;
}
#mode a:hover:after,
#indent-type a:hover:after {
  background-position: center right;
}
#indent-size {
  width: 30px;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  text-align: center;
}
.coloreditor {
  width: 420px;
  height: 214px;
  background: -webkit-image-set(url("../img/color_editor.png") 1x, url("../img/color_editor@2X.png") 2x);
}
