@charset "UTF-8";
@import url("/css/highlight-emacs.css") screen and (prefers-color-scheme: light);
@import url("/css/highlight-monokai.css") screen and (prefers-color-scheme: dark);
@media (prefers-color-scheme: light) {
  :root {
    --blockBackgroundColor: #c2beb9;
    --bodyBackgroundColor: #d7d5d1;
    --bodyForegroundColor: #2a2e2f;
    --codeBackgroundColor: #f8f8f8;
    --linkForegroundColor: #1c4253; } }

@media (prefers-color-scheme: dark) {
  :root {
    --blockBackgroundColor: #1c1e1f;
    --bodyBackgroundColor: #131516;
    --bodyForegroundColor: #bcb7ae;
    --codeBackgroundColor: #272822;
    --linkForegroundColor: #00b3ff; } }

html {
  background-color: var(--bodyBackgroundColor); }

body {
  color: var(--bodyForegroundColor);
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
  width: 100%;
  margin: 0; }

small {
  font-size: 0.7em; }

li p {
  margin: 0; }

table {
  width: 100%; }

a.external-link-icon {
  font-size: x-small;
  vertical-align: text-top; }

a.header-anchor {
  text-decoration: none;
  font-size: 0.9rem;
  vertical-align: middle; }

a.image-link {
  text-decoration: none; }

span.footer-link-seperator {
  margin: .5rem;
  overflow: hidden; }

div.container {
  max-width: 900px;
  margin: 0 auto 0.5em auto;
  padding: 1em 2em 0 2em; }

span.citneed {
  vertical-align: top;
  font-size: 0.7em;
  padding-left: 0.3em; }

p.text-center {
  text-align: center; }

article footer hr {
  width: 50%; }

article.recipe table td.checkbox {
  width: 2rem; }

article.recipe p.notes {
  font-style: italic; }

section.admonition {
  background-color: var(--blockBackgroundColor);
  border: 1px solid var(--bodyForegroundColor);
  margin: .5rem auto 1.74rem auto;
  width: 85%;
  max-width: 810px;
  padding: 1.5rem; }
  section.admonition .admonition-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); }
  section.admonition p {
    margin: 0; }

section.project {
  border-top: 1px solid var(--bodyForegroundColor);
  padding: 0.5rem 0.5rem; }
  section.project h2 {
    margin: 0.5rem 0rem; }
    section.project h2 small {
      margin-left: 1.5rem;
      font-weight: normal;
      font-size: small; }
  section.project p {
    margin-top: 0; }
  section.project nav.project a, section.project nav.project a:visited {
    margin: 0.5rem;
    text-decoration: underline;
    color: var(--bodyForegroundColor); }
  section.project nav.project a::before {
    content: "» "; }

section.recipe {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: [preview] 1fr [description] 8fr [end]; }
  section.recipe div.picture {
    grid-column-start: preview;
    grid-column-end: description; }
  section.recipe div.description {
    grid-column-start: description;
    grid-column-end: end; }
    section.recipe div.description p {
      margin: 0.3rem 0 0 0; }
  section.recipe h3 {
    color: var(--bodyForegroundColor);
    margin: 0 0.5rem 0 0;
    display: inline;
    font-size: 1.2rem; }
  section.recipe ul.taglist {
    font-size: 0.7rem;
    display: inline; }

section.service {
  border-top: 1px solid var(--bodyForegroundColor);
  padding: 0.5rem; }
  section.service h2 {
    margin: 0.5rem 0rem; }
    section.service h2 small {
      margin-left: 1.5rem;
      font-weight: normal;
      font-size: small; }
  section.service p {
    margin-top: 0; }

@media (min-width: 900px) {
  section.admonition {
    display: grid;
    grid-template-columns: [title] 0.25fr [body] 1fr [end]; }
    section.admonition .admonition-title {
      grid-column-start: title;
      grid-column-end: body; }
    section.admonition p {
      grid-column-start: body;
      grid-column-end: end;
      padding-left: 10px;
      border-left: 1px solid #ddd; } }

@media (max-width: 900px) {
  section.admonition .admonition-title {
    text-align: center;
    margin-top: 0; }
  section.admonition p {
    padding-top: 10px;
    border-top: 1px solid #ddd; } }

nav.main {
  padding-bottom: 8px;
  border-bottom: double var(--bodyForegroundColor);
  text-align: center;
  font-family: Sans; }
  nav.main a, nav.main a:visited {
    margin: 0 0.5em;
    font-size: 24px;
    text-decoration: none;
    color: var(--bodyForegroundColor); }
  nav.main .brand-name {
    text-align: center;
    display: block;
    font-weight: bold;
    font-size: 32px;
    color: var(--bodyForegroundColor);
    margin-bottom: 8px; }

a, a:visited {
  color: var(--linkForegroundColor); }

div.highlight {
  border: 2px solid var(--bodyForegroundColor);
  background-color: var(--codeBackgroundColor);
  width: 90%;
  margin: 0 auto;
  overflow-x: auto; }
  div.highlight pre {
    margin: 0;
    padding: 6px 6px; }
  div.highlight .code-link {
    border-top: 1px dotted var(--bodyForegroundColor);
    padding: 3px 8px;
    text-align: right; }

code {
  padding: 2px; }

pre code {
  padding: 0; }

.center {
  text-align: center; }

.quoteblock {
  width: 90%;
  margin: .5rem auto;
  border-left: double black;
  padding: 0.5em;
  background-color: var(--blockBackgroundColor); }
  .quoteblock blockquote {
    font-style: italic; }
  .quoteblock div.attribution {
    text-align: right;
    margin-right: 1em; }

.tag {
  color: var(--linkForegroundColor);
  font-family: monospace;
  text-decoration: none;
  border-bottom: 1px dotted var(--linkForegroundColor); }

.tag::before {
  content: "#"; }

.tooltip {
  border-bottom: 1px dotted;
  border-color: var(--linkForegroundColor); }

ul.taglist {
  margin: 0;
  padding: 0; }
  ul.taglist li {
    display: inline; }
