<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: charter;
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
  src: url("../fonts/charter_regular.woff2") format("woff2");
}

@font-face {
  font-family: charter;
  font-style: italic;
  font-weight: normal;
  font-stretch: normal;
  src: url("../fonts/charter_italic.woff2") format("woff2");
}

@font-face {
  font-family: charter;
  font-style: normal;
  font-weight: bold;
  font-stretch: normal;
  src: url("../fonts/charter_bold.woff2") format("woff2");
}

@font-face {
  font-family: charter;
  font-style: italic;
  font-weight: bold;
  font-stretch: normal;
  src: url("../fonts/charter_bold_italic.woff2") format("woff2");
}

@font-face {
  font-family: plex;
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
  src: url("../fonts/IBMPlexMono-Regular.ttf") format("truetype");
}

:root {
  --beige: #f4e7e1;
  --light-orange: #ff9b45;
  --intense-orange: #d5451b;
  --dark-orange: #521c0d;
  --teal: #b2cd9c;
  --dark-teal: #657c6a;
}

body {
  background-color: var(--beige);
  background-image: url("../images/bg_diamond.png");
  background-position: top;
  font-size: 19px;
  font-family: plex, mono;
  margin: 0;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: solid #c7b591;
  border-width: 2px 0 0 0;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a:hover {
  background-color: #fff6e6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: plex, mono;
  color: #151515;
  font-size: 19px;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
.container {
  margin: 3em auto;
  width: 90%;
  max-width: 90rem;
  background-color: var(--beige);
  color: #151515;
  outline-color: #151515;
  outline-style: solid;
  outline-width: 1px;
  outline-offset: 0;
  box-shadow: 10px 10px;
}

#content {
  padding: 10px 5% 20px 5%;
}

/*HEADER STYLE*/
#header {
  background-color: var(--beige);
  padding: 0 5%;
  border-color: black;
  border-style: solid;
  border-width: 0 0 1px 0;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: black;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}

#technical {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
  margin: 1em;
}

#technical p {
  width: 20%;
  flex-grow: 1;
}

@media only screen and (max-width: 600px) {
  #technical p {
    width: 50%;
  }
}

#post-content {
  display: flex;
  column-gap: 2rem;
  font-family: charter;
}

@media only screen and (max-width: 600px) {
  #post-content {
    flex-flow: column nowrap;
  }
}

.text-button {
  background-color: var(--beige);
  border: solid 1px;
  padding: 0.5rem 0.5rem;
  transition: 0.2s;
}

.text-button:hover {
  box-shadow: 2px 2px;
}

.text-button:active {
  box-shadow: inset 1px 1px 1px;
}

#page-controls {
  font-family: plex;
  font-size: 19px;
}
</pre></body></html>