
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #2F3129;
}

.appWrapper {
  height: 100%;
  width: 100%;
}

.gAppContainer {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 1.5em auto 288px;
  grid-template-columns: 100%;
}

.gHeader {
  display: grid;
  background-color: #424242;
  color: white;
  height: 100%;
  width: 100%;
  grid-template-rows: 100%;
  grid-template-columns: 40px auto 160px;
  height: 1.5em;
}

.gShareURI {
  margin-left: -.75em;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
  align-self: center;
}

.gShareButton {
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
  justify-self: center;
  align-self: center;
  width: 14em;
  text-align: justify;
}

.gV2 {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-rows: 100%;
  grid-template-columns: 50% 50%;
}

.gV3 {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-rows: 100%;
  grid-template-columns: 25% 25% auto;
}

.editorContainer {
  background-color: #2F3129;
  width: 100%;
  height: 100%;
}

.editorHeader {
  background: #202020;
  color: white;
  width: auto;
  height: 32px;
  line-height: 32px;
  padding-left: 4px;
  padding-right: 4px;
}

.editorBody {
  width: 100%;
  height: calc(100% - 32px);
}

.editorHeaderTitle {
  color: #32a9e6;
  font-size: 12px;
  font-weight: bold;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
}

.editorHeaderButtons {
  float: right;
  padding-right: 8px;
  font-size: 11px;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
}

.settingSectionHeader {
  padding-top: 8px;
  color: #32a9e6;
  font-size: 11px;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
}

.codeSpan {
  padding-top: 8px;
  color: #32a9e6;
  font-size: 11px;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
}

.settingSection, .helpSection {
  padding-top: 4px;
  font-size: 11px;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
}

.header {
  padding: 8px;
  width: 100%;
  height: 50px;
  background-color: #2F3129;
  color: #AAAAAA;
}

.headerTitle {
  font-size: 16px;
  line-height: 16px;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
}

#side {
  height: 100%;
  background-color: #2F3129;
  color: #AAAAAA;
}

.compilerOptions {
  width: 128px;
}

.waIcon {
  padding: 4px;
  width: 1.125em;
  height: 1.125em;
}

.fa-cloud-upload:hover {
    color: #87ec8d;
    cursor: pointer;
}

a:hover {
  color: #87ec8d;
  cursor: pointer;
}

.outputCanvas {
  background-color: white;
  width: 100%;
  height: calc(100% - 3em);
  user-select: none;
}

.settingsOverlay, .canvasOverlay, .helpOverlay, .fileExplorerOverlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: auto;
  width: calc(3em + 66vmin);
  max-width: 69vmin;
  height: calc(4em + 88vmin);
  max-height: 92vmin;
  outline: 50vmax solid rgba(255,255,255,.7);
  position: fixed;
  z-index: 20;
  opacity: 1;
  background-color: rgba(20, 20, 20, 0.9);
  padding-left: 10px;
  vertical-align: middle;
  color: white;
  padding: 10px;
  font-size: 11px;
  border-radius: 1em;
}


.notSupported {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: auto;
  width: 400px;
  height: 256px;
  position: fixed;
  z-index: 20;
  opacity: 1;
  background-color: rgba(20, 20, 20, 0.9);
  padding-left: 10px;
  vertical-align: middle;
  color: white;
  padding: 10px;
  border-radius: 1em;
  font-size: 16px;
  font-family: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
  text-align: justify;
}

.hidden {
  display: none;
}
iframe.hidden {
  position: fixed;
  top: 0;
  right: 0;
  width: 10;
  height: 10;
  z-index: -1000;
  visibility: hidden;
}

.disabled-link {
  pointer-events: none;
  color: #AAAAAA;
}
.gShareButton>a {
    display: inline-block;
    padding: 0 .125em;
}
