:root {
  --base-text-color: #eeeee6;
  --link-text-color: #b5dff0;
  --heading-text-color: #f3d93e;
  --background-color: #010a2e;

  --header-text-color: #f3d93e;
  --header-background-color: #000;
  --footer-text-color: var(--header-text-color);
  --footer-background-color: #000;
}


html {
    font-family: sans-serif;
    color: var(--base-text-color);
    line-height: 1.3;
}

html, body{
    margin: 0;
    height: 100%;
}

a {
    text-decoration: none;
}
a[href] {
    color: var(--link-text-color);
}

a[href]:hover {
    text-decoration: underline;
}
a:visited {
    color: var(--link-text-color);
}

body {
    background-color: var(--background-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex-grow: 1;
}

header {
    width: 100%;
    background: var(--header-background-color);
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.header-frame {
    display: flex;
    justify-content: space-between;
    color:  var(--header-text-color);
}

.header-buttons {
    margin: 2px;
}

.header-logo {
    font-size: 22px;
    margin: 6px 0 6px 0;
}

article {
    width: 100%;
    display: flex;
    justify-content: center;
}

.article-frame, .header-frame {
    margin: 0 20px;
    width: 800px;
    min-width: 200px;
}

.article-frame {
    min-height: 300px;
}

.article-header {
    padding-top: 60px;
    padding-bottom: 40px;
    margin: 0;
    font-weight: 100;
    font-size: 3rem;
    color: var(--heading-text-color);
}

.article-content-header {
    padding-top: 30px;
    font-weight: 100;
    font-size: 1.6rem;
    color: var(--heading-text-color);
}

.article-content {
    padding: 20px 0;
}


footer {
    width: 100%;
    background-color: var(--footer-background-color);
    color: var(--header-text-color);
    display: flex;
    font-size: small;
    padding: 5px 0;
}

.footer-version {
    margin-left: auto;
    padding: 5px;
}

.footer-info {
    margin-left: auto;
    color: #3d4773;
    padding: 5px;
}

.separator {
    margin: 50px 0;
    border-color: var(--header-text-color);
    color: var(--header-text-color);
}

.button {
    background-color: #000;
    border: 2px solid #646464;
    border-radius: 2px;
    color: #fffb09;
}

.input, .textarea {
  background-color: #000;
  border: 2px solid #646464;
  border-radius: 2px;
  color: white;
}

.textarea {
  font-family: monospace
}

.fornax-logo {
  margin-top: 40px;
  font-size: 16px;
  color: var(--heading-text-color);
  font-weight: bold;
}

@media only screen and (max-width: 625px) {
  .fornax-logo {
    font-size: 12px;
  }
}

.source-explore-list {
  list-style: none;
  padding: 0;
}

.source-explore-list-item {
  margin: 5px 0;
}

.source-explore-icon {
  padding-left: 32px;
  padding-top: 5px;
  padding-bottom: 2px;
}

.source-explore-icon-file {
  background: url(svg-file.svg) no-repeat;
}

.source-explore-icon-directory {
  background: url(svg-directory.svg) no-repeat;
}

table, tr, td, th {
    text-align: left;
    border-collapse: collapse;
    border: solid 1px white;
}

td, th {
    padding: 8px 5px;
}

.link-passive[href], .link-passive[href]:hover, .link-passive:visited {
   text-decoration: unset;
   color: unset;
}

pre code.hljs {
    display: block;
    overflow-x: auto;
    padding: 1em
}

code.hljs {
    padding: 3px 5px
}

.hljs {
    background: #000;
    color: var(--base-text-color);
}

.hljs-comment, .hljs-quote {
    color: #7c7c7c
}

.hljs-meta, .hljs-meta .hljs-keyword, .hljs-meta .hljs-string {
    color: #f66
}

.hljs-keyword, .hljs-name, .hljs-selector-tag, .hljs-tag {
    color: #5eacff
}

.hljs-attribute, .hljs-selector-id {
    color: #ffffb6
}

.hljs-addition, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-string {
    color: #68dd58
}

.hljs-doctag, .hljs-section, .hljs-type {
    color: var(--header-text-color)
}

.hljs-bullet, .hljs-literal, .hljs-symbol, .hljs-template-variable, .hljs-variable {
    color: #29ffeb
}

.hljs-deletion, .hljs-number {
    color: #29ffeb
}

.hljs-emphasis {
    font-style: italic
}

.hljs-strong {
    font-weight: 700
}
