html,
body {
    background-color: #FFF8DC;
    font-family: 'goudy old style', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif;
}
/* -- Updating semantic HTML --*/
h2.logo {
    color: #0491b3;
    text-shadow: 0 0 2px #000;
}
ul li, ol li {
    line-height: 1.4em;
    padding: 0px 10px 10px 0;
}
img {
    margin: 1.5rem auto;
}
dd {
    display: block;
    margin-left: 40px;
    margin-top: .5rem;
}
blockquote {
    padding-left: 15px;
    border-left: 3px solid #ccc;
    font-style: italic;
}
textarea {
    font-family: 'Source Code Pro', monospace;
}
.asteriskField {
    display: none;
}
.align-center {
    text-align: center;
    display: block;
} 
.logo-link {
    background: #ffffff;
}
.logo-link:hover {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}
.post-link {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
    color: #000000;
    transition: all 250ms ease-in-out;
}
.post-link:hover {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
    color: #007eff;
    transition: all 250ms ease-in-out;
}
.sidenav {
    height: 100%;
    width: 256px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 16px 16px;
    overflow-y: auto;
    transition: all 250ms ease-in-out;
  }
  .sidenav-controls {
    flex: 1;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .sidenav a {
    padding: 8px;
    margin: 4px 0;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    color: #007eff;
    display: block;
    transition: all 250ms ease;
  }
  .sidenav a.active {
    background-color:#007eff;
    color: #ffffff;
    transform: scale(1.05);
  }
  .sidenav a:hover:not(.active) {
    background: #ffffff;
    color: #404040;
  }
  .sidenav-button { 
    position: fixed;
    left: 0;
    top: calc(50vh - 16px);
    z-index: 2;
    border: none;
    outline: 0;
    font-size: 2rem;
    display: none;
    padding: 4px;
    padding-left: 8px;
    transition: all 250ms ease-in-out;
  }
  .sidenav-button:focus {
    box-shadow: none;
  }
  @media (max-width: 991px) {
    .sidenav {
      left: -256px;
    }
    .sidenav-show {
      left: 0;
      box-shadow: 4px 0 16px #000000;
    }
    .sidenav-button {
      display: block;
    }
    .sidenav-button-show {
      left: 256px;
      padding-left: 4px;
      padding-right: 16px;
      transform: scaleX(-1);
    }
  }
  
  .main {
    margin-left: 256px;
    max-width: 1664px;
    padding: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: auto;
    transition: all 250ms ease-in-out;
  }
  @media (max-width: 991px) {
    .main {
      margin-left: 0;
    }
    .main-below {
      filter: opacity(0.01);
      pointer-events: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }
    .body-below {
      overflow: hidden;
    }
  }

.date {
  color:rgb(105, 54, 9);
}

.main h1 {
    color: #F70;
    font-size: 230%;
    font-weight: normal !important;
}
.btn-form {
    min-width: 128px;
}
.link-unstyled, .link-unstyled:link, .link-unstyled:hover {
    color: inherit;
    text-decoration: inherit;
}
.alert > ul {
    list-style-type: none;
    padding: 0;
}
.list-view td:last-child {
    width: 200px;
}
.actions-sidebar {
    width: 256px;
}
.btn-sm {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}
div.note {
    background-color: #EEE;
    border: 1px solid #CCC;
    padding: 8px;
    margin: 1rem 0;
}
pre {
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    padding: 8px;
    background: #EEE;
}
.alert {
    background-color: #f8f8f8;
    border-radius: 4px;
    color: #000000;
}
.alert-dismissible {
    margin: 12px;
    animation: slideIn 500ms;
}
@keyframes slideIn {
    from {
        transform: translate(0, -72px);
    }
    to {
      transform: translate(0, 0);
    }
}

/* Alert coloring */
.alert-success {border-top: 6px solid #8cc63f;}
.alert-danger {border-top: 6px solid #f44336;}
.alert-warning {border-top: 6px solid #ff9800;}
.alert.debug {border-top: 6px solid #181818;}
.alert-info {border-top: 6px solid #3fc6bd;}

/* Code coloring */
.code .hll { background-color: #ffffcc }
.code .c { color: #8f5902; font-style: italic } /* Comment */
.code .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
.code .g { color: #000000 } /* Generic */
.code .k { color: #204a87; font-weight: bold } /* Keyword */
.code .l { color: #000000 } /* Literal */
.code .n { color: #000000 } /* Name */
.code .o { color: #ce5c00; font-weight: bold } /* Operator */
.code .x { color: #000000 } /* Other */
.code .p { color: #000000; font-weight: bold } /* Punctuation */
.code .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
.code .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
.code .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
.code .cs { color: #8f5902; font-style: italic } /* Comment.Special */
.code .gd { color: #a40000 } /* Generic.Deleted */
.code .ge { color: #000000; font-style: italic } /* Generic.Emph */
.code .gr { color: #ef2929 } /* Generic.Error */
.code .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.code .gi { color: #00A000 } /* Generic.Inserted */
.code .go { color: #000000; font-style: italic } /* Generic.Output */
.code .gp { color: #8f5902 } /* Generic.Prompt */
.code .gs { color: #000000; font-weight: bold } /* Generic.Strong */
.code .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.code .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
.code .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
.code .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
.code .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
.code .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
.code .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
.code .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
.code .ld { color: #000000 } /* Literal.Date */
.code .m { color: #0000cf; font-weight: bold } /* Literal.Number */
.code .s { color: #4e9a06 } /* Literal.String */
.code .na { color: #c4a000 } /* Name.Attribute */
.code .nb { color: #204a87 } /* Name.Builtin */
.code .nc { color: #000000 } /* Name.Class */
.code .no { color: #000000 } /* Name.Constant */
.code .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
.code .ni { color: #ce5c00 } /* Name.Entity */
.code .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
.code .nf { color: #000000 } /* Name.Function */
.code .nl { color: #f57900 } /* Name.Label */
.code .nn { color: #000000 } /* Name.Namespace */
.code .nx { color: #000000 } /* Name.Other */
.code .py { color: #000000 } /* Name.Property */
.code .nt { color: #204a87; font-weight: bold } /* Name.Tag */
.code .nv { color: #000000 } /* Name.Variable */
.code .ow { color: #204a87; font-weight: bold } /* Operator.Word */
.code .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
.code .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
.code .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
.code .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
.code .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
.code .sb { color: #4e9a06 } /* Literal.String.Backtick */
.code .sc { color: #4e9a06 } /* Literal.String.Char */
.code .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
.code .s2 { color: #4e9a06 } /* Literal.String.Double */
.code .se { color: #4e9a06 } /* Literal.String.Escape */
.code .sh { color: #4e9a06 } /* Literal.String.Heredoc */
.code .si { color: #4e9a06 } /* Literal.String.Interpol */
.code .sx { color: #4e9a06 } /* Literal.String.Other */
.code .sr { color: #4e9a06 } /* Literal.String.Regex */
.code .s1 { color: #4e9a06 } /* Literal.String.Single */
.code .ss { color: #4e9a06 } /* Literal.String.Symbol */
.code .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
.code .vc { color: #000000 } /* Name.Variable.Class */
.code .vg { color: #000000 } /* Name.Variable.Global */
.code .vi { color: #000000 } /* Name.Variable.Instance */
.code .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
