:root {
  --white:      #ffffff;
  --lightgray:  #e0e0e0;
  --gray:       #7a7a7a;
  --darkgray:   #303030;
  --black:      #000000;
  --darkred:    #66193b;
  --kellygreen: #4CBB17;
  --blue:       #1400ff;
  --oxfordblue: #001C32;
  --purple:     #AA6BBF;
}
* {
  box-sizing: border-box;
}
body, html {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: var(--white);
  background-color: var(--oxfordblue);
}
footer{
  text-align: center;
}
main {
  padding: 1.5rem;
  border-bottom: 3px solid var(--lightgray);
}
main :first-child {
  margin-top: 0;
}
header {
  border-bottom: 3px solid var(--lightgray);
}
header:after {
  content: "";
  display: table;
  clear: both;
}
img {
  height: auto;
  border: 3px solid var(--gray);
  border-radius: 5px;
}
a[href] {
  color: var(--blue);
}
a[href]:visited {
  color: var(--purple);
}
p {
  line-height: 1.45;
}
table, th, td{
  border-collapse: collapse;
  border: 2px solid var(--darkred);
  padding: 5px;
  font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
  font-size: 0.8125rem;
  line-height: 1.35;
}
.home{
  margin: 1rem;
}
.button {
  display: block;
  padding: 0.5rem;
  border: .25rem solid var(--darkgray);
  border-radius: .5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.button:hover {
  text-decoration: none;
  background: var(--black);
}
.quietLink a[href]:visited, a[href]:link {
  color: var(--kellygreen);
  text-decoration: none;
}
.postmeat{
  overflow: auto;
  display: block;
  max-width: 70em;
  margin: auto;
}
.postmeat img {
  float: left;
  clear: both;
  margin: 0.5rem 1rem;
  max-width: 95%;
}
.postmeat h3 {
  clear: both;
}
.postnav{
  margin-top: 2rem;
}
.postnav:after {
  content: "";
  display: table;
  clear: both;
}
.prevPost{
  display: inline;
  float: left;
  margin-bottom: 1rem;
}
.nxtPost{
  display: inline;
  float: right;
}
.tmpl-home {
}
.tmpl-post li{
  line-height: 1.45;
}
.tmpl-deviceNotes table, th, td{
  max-width: none;
}
.nav {
  list-style: none;
  float: left;
}
.nav-item {
  display: inline-block;
}
.postlist {
  list-style: none;
  padding: 0;
}
.postlist th, .postlist td{
  border: 2px solid var(--blue);
}
.postlist-item {
  counter-increment: start-from -1;
}
.postlist-item:before {
  display: inline-block;
  pointer-events: none;
  content: "" counter(start-from, decimal-leading-zero);
  line-height: 100%;
  text-align: right;
}
.postlist-date,
.postlist-item:before {
  font-size: 0.8125rem; /* 13px /16 */
  color: var(--white);
}
.postlist-date {
  word-spacing: -0.5px;
}
.postlist-link {
  display: inline-block;
  padding: 0.25rem 0.1875rem; /* 4px 3px /16 */
}
.postlist-item-active .postlist-link {
  font-weight: bold;
}
.postlist-link {
  font-size: 1.1875rem; /* 19px /16 */
  font-weight: 700;
}
.post-tag {
  display: inline-block;
  vertical-align: text-top;
  text-transform: uppercase;
  font-size: 0.625rem; /* 10px /16 */
  padding: 2px 4px;
  margin-left: 0.5rem; /* 8px /16 */
  background-color: var(--darkred);
  color: var(--white);
  border-radius: 0.25rem; /* 4px /16 */
  text-decoration: none;
}
a[href].post-tag,
a[href].post-tag:visited {
  color: var(--white);
}

/*Begin syntax highlighting plugin - https://www.11ty.dev/docs/plugins/syntaxhighlight/*/
code {
  font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
  font-size: 14px;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  padding: .3rem;
  margin: .5rem 0;
  color: var(--green);
  background-color: var(--black);
  line-height: 1.5;
  border: 2px solid var(--gray);
  border-radius: 5px;
}
.highlight-line {
  display: block;
  padding: 0.125rem 1rem;
  text-decoration: none; /* override del, ins, mark defaults */
  color: inherit; /* override del, ins, mark defaults */
}
.highlight-line:empty:before {/* allow highlighting empty lines */
  content: " ";
}
.highlight-line + br {/* avoid double line breaks when using display: block; */
  display: none;
}
.highlight-line-isdir {
  color: #b0b0b0;
  background-color: #222;
}
.highlight-line-active {
  background-color: #444;
  background-color: hsla(0, 0%, 27%, .8);
}
.highlight-line-add {
  background-color: #45844b;
}
.highlight-line-remove {
  background-color: #902f2f;
}
/*End syntax highlighting plugin*/
