<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}
/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: black;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header,
.cm-strong {
  font-weight: bold;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3 {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta {
  color: #555;
}
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-s-default .cm-error {
  color: #f00;
}
.cm-invalidchar {
  color: #f00;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}
.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
.CodeMirror-rtl pre {
  direction: rtl;
}
.CodeMirror-code {
  outline: none;
}
/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre {
  position: static;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror-line::selection,
.CodeMirror-line &gt; span::selection,
.CodeMirror-line &gt; span &gt; span::selection {
  background: #d7d4f0;
}
.CodeMirror-line::-moz-selection,
.CodeMirror-line &gt; span::-moz-selection,
.CodeMirror-line &gt; span &gt; span::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* Used to force a border model for a node */
.cm-force-border {
  padding-right: .1px;
}
@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: '';
}
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}
/****************************************************************/
/*   Based on mbonaci's Brackets mbo theme                      */
/*   https://github.com/mbonaci/global/blob/master/Mbo.tmTheme  */
/*   Create your own: http://tmtheme-editor.herokuapp.com       */
/****************************************************************/
.cm-s-mbo.CodeMirror {
  background: #2c2c2c;
  color: #ffffec;
}
.cm-s-mbo div.CodeMirror-selected {
  background: #716C62;
}
.cm-s-mbo .CodeMirror-line::selection,
.cm-s-mbo .CodeMirror-line &gt; span::selection,
.cm-s-mbo .CodeMirror-line &gt; span &gt; span::selection {
  background: rgba(113, 108, 98, 0.99);
}
.cm-s-mbo .CodeMirror-line::-moz-selection,
.cm-s-mbo .CodeMirror-line &gt; span::-moz-selection,
.cm-s-mbo .CodeMirror-line &gt; span &gt; span::-moz-selection {
  background: rgba(113, 108, 98, 0.99);
}
.cm-s-mbo .CodeMirror-gutters {
  background: #4e4e4e;
  border-right: 0px;
}
.cm-s-mbo .CodeMirror-guttermarker {
  color: white;
}
.cm-s-mbo .CodeMirror-guttermarker-subtle {
  color: grey;
}
.cm-s-mbo .CodeMirror-linenumber {
  color: #dadada;
}
.cm-s-mbo .CodeMirror-cursor {
  border-left: 1px solid #ffffec;
}
.cm-s-mbo span.cm-comment {
  color: #95958a;
}
.cm-s-mbo span.cm-atom {
  color: #00a8c6;
}
.cm-s-mbo span.cm-number {
  color: #00a8c6;
}
.cm-s-mbo span.cm-property,
.cm-s-mbo span.cm-attribute {
  color: #9ddfe9;
}
.cm-s-mbo span.cm-keyword {
  color: #ffb928;
}
.cm-s-mbo span.cm-string {
  color: #ffcf6c;
}
.cm-s-mbo span.cm-string.cm-property {
  color: #ffffec;
}
.cm-s-mbo span.cm-variable {
  color: #ffffec;
}
.cm-s-mbo span.cm-variable-2 {
  color: #00a8c6;
}
.cm-s-mbo span.cm-def {
  color: #ffffec;
}
.cm-s-mbo span.cm-bracket {
  color: #fffffc;
  font-weight: bold;
}
.cm-s-mbo span.cm-tag {
  color: #9ddfe9;
}
.cm-s-mbo span.cm-link {
  color: #f54b07;
}
.cm-s-mbo span.cm-error {
  border-bottom: #636363;
  color: #ffffec;
}
.cm-s-mbo span.cm-qualifier {
  color: #ffffec;
}
.cm-s-mbo .CodeMirror-activeline-background {
  background: #494b41;
}
.cm-s-mbo .CodeMirror-matchingbracket {
  color: #ffb928 !important;
}
.cm-s-mbo .CodeMirror-matchingtag {
  background: rgba(255, 255, 255, 0.37);
}
/* FONT PATH
 * -------------------------- */
html,
body {
  margin: 0;
  min-height: 100%;
  position: relative;
  font-size: 16px;
  font-family: "Helvetica", "Arial", "Verdana", sans-serif;
}
p {
  margin: 1em 0;
  line-height: 1.5em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: #3976A3;
}
a:hover {
  color: #4e90c1;
}
.app-header {
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 3;
}
.app-header h2 {
  display: inline-block;
  margin: 0;
  line-height: 50px;
  padding: 0 1em;
}
.app-header .draft-name {
  display: inline-block;
  font-size: .8em;
  color: #666;
  line-height: 1.5em;
  border-bottom: 1px solid #ccc;
  max-width: 16em;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
}
.app-header .draft-saving {
  display: inline-block;
  font-size: .7em;
  padding: .4em;
  background-color: #9BBAD1;
  color: #fff;
  line-height: 1em;
  border-radius: .3em;
  vertical-align: middle;
  margin-left: 1em;
}
.app-header .nav-tools {
  float: right;
}
.app-header .nav-tools ul {
  margin: 0;
  font-size: .8em;
  line-height: 50px;
}
.app-header .nav-tools li {
  display: inline;
  margin-right: 1em;
}
.app-main {
  position: relative;
  z-index: 1;
  background-color: #eee;
  margin: 10px 0 0 0;
  box-sizing: border-box;
}
.app-footer {
  position: fixed;
  z-index: 2;
  background-color: #111;
  color: #555;
  width: 100%;
  height: 30px;
  left: 0;
  bottom: 0;
}
.app-footer p {
  margin: 0;
  text-align: center;
  font-size: .8em;
  line-height: 30px;
}
.app-footer a,
.app-footer span {
  display: inline-block;
  vertical-align: middle;
}
.app-footer .copyright {
  margin-left: 1em;
}
.ui.ui-grid {
  letter-spacing: -0.34em;
}
.ui.ui-grid .col {
  display: inline-block;
  width: 50%;
  letter-spacing: normal;
  font-size: 0.8em;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}
.ui.ui-grid .col:nth-child(even) .CodeMirror.CodeMirror {
  background-color: #2c2c3c;
}
.ui.ui-message.compile-error {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  left: 0;
  top: 0;
  padding: .5em;
  background-color: rgba(200, 64, 32, 0.9);
  z-index: 5;
  color: #fff;
}
.ui.ui-message.error {
  padding: .5em 0;
  font-size: .8em;
  color: #c00;
}
.ui.ui-text-input {
  border: 1px solid #666;
  background-color: #fff;
  width: 100%;
  padding: .5em;
  box-sizing: border-box;
  font-size: inherit;
}
.ui.ui-button {
  font-size: inherit;
  border: none;
  background-color: #eee;
  color: #222;
  padding: 0 1em;
  border-radius: .3em;
  cursor: pointer;
}
.ui.ui-button:hover {
  background-color: #ddd;
  color: #333;
}
.ui.ui-button.wide {
  padding-left: 2em;
  padding-right: 2em;
  margin-top: 0.5em;
}
.ui.ui-button.primary {
  background-color: #369;
  color: #fff;
}
.ui.ui-button.primary:hover {
  background-color: #258;
  color: #fff;
}
.cmp.cmp-draft-save label {
  display: block;
  margin-bottom: 1em;
}
.cmp.cmp-draft-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  max-height: 12em;
  overflow: auto;
}
.cmp.cmp-draft-list li {
  position: relative;
  padding: .5em;
  border-top: 1px solid #aaa;
  cursor: pointer;
  line-height: 1em;
}
.cmp.cmp-draft-list li:hover {
  background-color: #fff;
}
.cmp.cmp-draft-list li:first-child {
  border: none;
}
.cmp.cmp-draft-list li .title {
  display: inline-block;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.cmp.cmp-draft-list li .icon {
  position: absolute;
  right: .5em;
}
.cmp.cmp-draft-list li small {
  color: #999;
  font-size: .5em;
  margin-left: .5em;
  vertical-align: middle;
}
.cmp.cmp-config table {
  border-collapse: collapse;
  width: 100%;
}
.cmp.cmp-config th,
.cmp.cmp-config td {
  font-size: .9em;
  padding: 1em;
  padding-left: 0;
  border-top: 1px solid #ccc;
}
.cmp.cmp-config tr:first-child th,
.cmp.cmp-config tr:first-child td {
  border-top: none;
}
.cmp.cmp-config select {
  font-size: 1em;
}
.cmp.cmp-about h2 {
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 1em 0;
}
.cmp.cmp-about p {
  margin: 1em 0;
  font-size: .9em;
}
.modal-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  z-index: 8;
  line-height: 1em;
  text-align: center;
}
.modal-container .modal {
  display: inline-block;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: scroll;
  width: 60%;
  vertical-align: middle;
  line-height: 1.5em;
  text-align: left;
}
.modal-container .modal &gt; .inner {
  padding: 2em;
}
.modal-container .button-close {
  position: absolute;
  display: inline-block;
  right: .5em;
  top: .5em;
  color: #333;
  font-size: 1.2em;
  width: 1.2em;
  height: 1.2em;
  line-height: 1.2em;
  text-align: center;
  border-radius: 100%;
  cursor: pointer;
}
.error-message-enter-active,
.error-message-leave-active {
  transition: all .3s ease 0s;
}
.error-message-enter,
.error-message-leave-to {
  transform: translateY(-3em);
  opacity: 0;
}
.error-message-enter-to,
.error-message-leave {
  transform: translateY(0);
  opacity: 1;
}
.modal-enter-active,
.modal-leave-active {
  transition: all .3s ease 0s;
}
.modal-enter-active .modal,
.modal-leave-active .modal {
  transition: all .3s ease 0s;
}
.modal-enter,
.modal-leave-to {
  opacity: 0;
}
.modal-enter .modal,
.modal-leave-to .modal {
  transform: translateY(-5%);
}
.modal-enter-to,
.modal-leave {
  opacity: 1;
}
.modal-enter-to .modal,
.modal-leave .modal {
  transform: translateY(0);
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity .3s ease 0s;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}
.fade-leave,
.fade-enter-to {
  opacity: 1;
}
</pre></body></html>