/* GlkOte stylesheet for Quixe/I7 Template
 * Designed by Andrew Plotkin <erkyrath@eblong.com>
 * <http://eblong.com/zarf/glk/glkote.html>
 * <http://eblong.com/zarf/glulx/quixe/>
 * 
 * This CSS stylesheet is in the public domain. Do whatever you want
 * with it.
 */

#windowport {
  width: 100%;
  height: 100%;
}

#errorpane {
  position: absolute;
  top: 0;
  width: 100%;
  padding-bottom: 3px;
}

#errorcontent {
  padding: 8px;
  text-align: center;
}

#loadingpane {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 20%;
}

.WindowFrame {
  /*position: absolute;*/
  margin: 0;
}

.BufferWindow {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.4;
  padding: 0 0.5em 0.5em 0.5em;
}

.GridWindow {
  overflow: hidden;
  font-family: monaco, andale mono, lucidatypewriter, courier, courier new, monospace;
  font-size: smaller;
  padding: 0.5em;
}

.GridLine {
  white-space: pre;
}

.InvisibleCursor {
  position: relative;
  padding-bottom: 14px;
  color: transparent;
  background-color: transparent;
}

.MorePrompt {
  font-weight: bold;
  position: absolute;
  opacity: 0.5;
  padding: 2px 6px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.Input {
  border: none;
  margin: 0;
  padding: 0;
  outline-width: 0;
  outline-style: none;
  background: none;
  font-weight: bold;
}
.input, .input .lineinput {
    left: 14px !important;
}
.BufferWindow .Input {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  left: 14px !important;
}

.GridWindow .Input {
  font-family: monaco, andale mono, lucidatypewriter, courier, courier new, monospace; /* necessary! */
  font-size: 14px;
}

/* The following are used for image alignment (in buffer windows). */

.ImageMarginLeft {
  float: left;
  margin-right: 0.5em;
}

.ImageMarginRight {
  float: right;
  margin-left: 0.5em;
}

.ImageInlineDown {
  vertical-align: text-top;
}

.ImageInlineUp {
  vertical-align: text-bottom;
}

.ImageInlineCenter {
  vertical-align: middle;
}

.FlowBreak {
  clear: both;
}

.Style_emphasized {
  font-style: italic;
}

.Style_preformatted {
  font-family: monaco, andale mono, lucidatypewriter, courier, courier new, monospace;
}

.Style_header {
  font-weight: bold;
}

.BufferWindow .Style_header {
  font-size: 17px;
}

.Style_subheader {
  font-weight: bold;
}

.Style_alert {
  font-weight: bold;
}

.Style_note {
  font-style: italic;
}

.Style_input {
  font-weight: bold;
}