html {
    box-sizing: border-box
}

*, *:before, *:after {
    box-sizing:inherit
}

.flx_row {
    display: flex;
    flex-wrap: wrap;
}

body {
    max-width: 66em;
    margin: 1em auto;
    padding: 0 .62em;
    font: 300 1.2em/1.6em Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color:#D8D8D8;
    background-color: #202020;
    border-style: none;
}

nav {
    flex: 2 2 2%;
    padding: .5em;
    font: 0.8em/1.0em sans-serif;
}

main {
    flex: 1 1 80%;
    padding: .5em;
}

footer {
    background-color: black;
    border-radius: 10px;
}

/* Adds a border to tables. */
table.borderclass {
    border-collapse: collapse;
    border: 2px solid orangered;
}

table.borderclass tr:nth-child(even) {
    background-color: #484848;
}

table.borderclass td, table.borderclass th {
    border-bottom: 1px solid orangered;
    padding-left: .5em;
    padding-right: .5em;
}

/* Adds table-indent and left-right padding to tables. */
table.padclass {
    padding-left: 1em;
}

table.padclass td, table.padclass th {
    padding-left: .5em;
    padding-right: .5em;
}

/* Adds a border to images. */
table.imgclass {
    border-collapse: collapse;
    border: 2px solid orangered;
}

table.imgclass tr:nth-child(even) {
    background-color: #484848;
}

table.imgclass td, table.imgclass th {
    border: 1px solid orangered;
    text-align: center;
}

.author {
    font-weight: bolder;
    font-size: 1.4em;
}

.time_tags {
    font-size: 0.84em;
    line-height: 1.2em;
}

.color_box {
    float: left;
    width: 20px;
    height: 20px;
    margin: 0px;
    border: 1px solid darkred;
}

.indent_small {
    padding-left: 1em;
}

.active_page {
    border-color: orange;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
}

a.nav:link {
    color: #D8D8D8;
    text-decoration: none;
}

a.nav:visited {
    color: #D8D8D8;
    text-decoration: none;
}

a.nav:hover {
    color: orange;
    text-decoration: underline;
}

a:link {
    color: orange;
    text-decoration: none;
}

a:visited {
    color: orangered;
    text-decoration: none;
}

a:hover {
    color: yellow;
    text-decoration: underline;
}

code {
    border-style: solid;
    border-color: orangered;
    border-radius: 10px;
    font-size: 1em;
    line-height: 1.2em;
}

code.highlighter-rouge {
    border-radius: 5px;
    border-width: thin;
    border-color: lightskyblue;
    background-color: black;
    padding: 0.20em;
    display: inline;
}
