/* credits: https://jgthms.com/web-design-in-4-minutes/ !*/
body {
    color: #555;
    font-family: "Helvetica", "Arial", sans-serif;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 50em;
    padding: 4em 1em;
}

h1,
h2,
strong {
    color: #333;
}

h2 {
    margin-top: 1em;
    padding-top: 1em;
}
a {
    color: #00d1b2;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

img.inline {
    display: inline;
}
:target {
    background-color: rgba(0, 209, 178, 0.2);
}

code,
pre {
    font-family: monospace, monospace;
    white-space: pre-wrap;
}
code {
    background-color: #F4F5F7;
    padding: 0.2em 0.5em;
}
pre {
    background: #f8f8f8;
    border: solid 1px #c8ccd1;
    padding: 1em;
}

/* table (inspired -a lot- from mediawiki) */
/* source: https://en.m.wikipedia.org/w/load.php?debug=true&lang=en&modules=ext.cite.styles%7Cmediawiki.hlist%7Cmediawiki.ui.button%2Cicon%7Cskins.minerva.base.reset%2Cstyles%7Cskins.minerva.content.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.images%7Cskins.minerva.tablet.styles&only=styles&skin=minerva */

table {
    border-collapse: collapse;
}

@media all and (max-width: 720px) {
    table {
        display: block;
        width: 100% !important;
    }
    caption {
        display: block;
    }
}
table {
    margin: 1em 0;
    /* following 4 rules are needed for scrolling */
    overflow: auto;
    /* for browsers that don't support overflow-y */
    overflow-y: hidden;
    overflow-x: auto;
}
table caption {
    text-align: left;
}
table {
    border: 1px solid #54595d;
    border-color: rgba(84, 89, 93, 0.3);
}
table > tr > th,
table > tr > td,
table > * > tr > th,
table > * > tr > td {
    border: 1px solid #54595d;
    border-color: rgba(84, 89, 93, 0.3);
    padding: 0.2em;
}
table > tr > th,
table > * > tr > th {
    background-color: #eaecf0;
}






/* breadcrumb (inspired from bulma.io) */
.breadcrumb ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb li {
    align-items: center;
    display: flex;
}
.breadcrumb li a {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 .75em;
}
.breadcrumb li:first-child a {
    padding-left: 0;
}
.breadcrumb li.is-active a {
    color: #363636;
    cursor: default;
    text-decoration: none;
    pointer-events: none;
}
.breadcrumb li+li::before {
    color: #b5b5b5;
    content: "\0002f";
}
