body, html {
    margin: 0;
    height: 100%;
    background-image: url(static/images/quartz512.png);
    font-family: 'Courier New', Courier, monospace;
}

/* marked.js */

pre, code {
  color: #e6e6e6;
}

pre {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  overflow-x: auto;
  border-radius: 4px;
}

code {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.15em 0.35em;
  border-radius: 3px;
}

pre code {
  background: none;
  padding: 0;
}

#content img {
  max-width: 100%;
  height: auto;
  border: 2px dotted #ccc;
  box-sizing: border-box;
}

#content a,
#content a:visited {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

#content a:hover {
  text-decoration: underline;
}

/* legacy */

.container {
    height: 100%;
    display: flex;
}

.box-navbar {
    border: 2px dotted #ccc;
    margin: 5px;
    padding: 5px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

.box-navbar a,
.box-navbar a:visited {
    margin: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.box-navbar a:hover {
    text-decoration: underline;
    font-weight: bold;
}

.box-navbar-breadcrumbs {
    margin: 2px;
    font-size: 0.85em;
    font-weight: normal;
    opacity: 0.75;
}

.box-navbar-breadcrumbs:empty {
    margin: 0;
}

.box-navbar-breadcrumbs a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

.box-navbar-breadcrumbs a:hover {
    text-decoration: underline;
}

.box-main {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 10px;
    border: 2px dotted #ccc;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
}

.box-md {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  border: 2px dotted #ccc;
  margin: 5px;
  padding: 5px;
}

#content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Edge/IE viejos */
}

#content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.box-side {
    margin-top: 15px;
    margin-bottom: 15px;
    flex: 1;
    padding: 40px;
}

/* Media queries */
@media screen and (max-width: 992px) {
    .box-side {
        display: none;
    }

    .box-main {
        margin: 5px;
    }
}