body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a {
  color: #0366d6;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:visited {
  color: #0366d6;
  transition: color 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

img {
  user-select: none;
}

.noselect {
  user-select: none;
}

.hidden {
  display: none;
}

.icon {
  display: inline;
}

.square-icon {
  display: inline-block;
  line-height: 1;
}

.icon svg {
  height: 1em;
  vertical-align: -0.125em;
}

.square-icon svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: bottom;
}

.faded:not(:hover) svg * {
  color: #595959 !important;
  fill: #595959 !important;
}

.container {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  padding: 0px 30px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.site-header {
  border-top: 5px solid #424242;
  border-bottom: 1px solid #e8e8e8;
  transition: border-color 0.2s ease-in-out;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-title {
  vertical-align: middle;
}

.site-name {
  font-size: 32px;
  font-weight: 300;
  font-variant: small-caps;
}

.site-description {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 5px;
  color: gray;
  transition: color 0.2s ease-in-out;
}

.site-nav {
  margin-left: auto;
  align-self: center;
  vertical-align: middle;
}

.site-nav a {
  display: inline-block;
}

.site-nav a:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 600px) {
  .site-title {
    text-align: center;
  }
  .site-nav {
    text-align: center;
    margin: 0px;
  }
  .header-flex {
    flex-direction: column;
  }
}
.quick-menu > :not(:first-child) {
  margin-left: 10px;
}

.feed {
  display: inline-block;
  padding: 9px;
  border: solid silver 1px;
  border-radius: 25%;
  vertical-align: top;
  transition: border-color 0.2s ease-in-out;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-button {
  display: inline-block;
  background-color: transparent;
  padding: 9px;
  border: solid silver 1px;
  border-radius: 25%;
  transition: border-color 0.2s ease-in-out;
}

.dropdown-button:hover {
  color: black;
  fill: black;
}

.dropdown-menu {
  width: max-content;
  position: absolute;
  right: 0;
  box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 5px;
  text-align: center;
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.dropdown-menu-item {
  display: block;
  box-sizing: border-box;
  font: inherit;
  padding: 0.25em 1em;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 5px;
}

button.dropdown-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  fill: #595959;
  transition: color 0.2s ease-in-out, fill 0.2s ease-in-out;
}

button.dropdown-menu-item:hover {
  color: black;
  fill: black;
  background-color: #f5f5f5;
}

.dropdown-menu-item svg {
  height: 1em;
  margin-right: 0.5ex;
}

.post-index li {
  margin-top: 30px;
}

.post-index:last-child li {
  margin-bottom: 15px;
}

.post-index h2 {
  font-size: 24px;
}

.posts {
  font-size: 24px;
  margin-bottom: 30px;
}

.post-index .meta {
  display: block;
  align-items: center;
  font-size: 12px;
  color: #828282;
  fill: #828282;
  margin-top: 0.25em;
  transition: color 0.2s ease-in-out, fill 0.2s ease-in-out;
}

.post-index .meta .date {
  margin-right: 10px;
}

.post-index .meta .categories {
  margin-right: 10px;
}

.post-index .continue {
  display: inline-block;
}

.post-meta {
  display: block;
  margin-top: -10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #828282;
  fill: #828282;
  border-bottom: 1px solid #eaecef;
  padding-bottom: 6px;
  transition: color 0.2s ease-in-out, fill 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
}

.post-meta .date {
  display: inline-block;
  margin-right: 10px;
}

.post-meta .edit {
  display: inline-block;
}

.post-meta .categories {
  display: inline-block;
  margin-right: 10px;
  margin-left: 0px;
}

.post-meta .tags {
  display: inline-block;
  margin-right: 0px;
  margin-left: 0px;
}

@media screen and (min-width: 800px) {
  .post-meta .topics {
    float: right;
  }
  .post-meta .categories {
    display: inline-block;
    margin-right: 0px;
    margin-left: 0px;
  }
  .post-meta .tags {
    display: inline-block;
    margin-right: 0px;
    margin-left: 10px;
  }
}
.page-content {
  padding: 30px 0;
  flex-grow: 1;
}

.site-footer {
  border-color: lightgray;
  border-style: solid;
  border-width: 1px 0px;
  background-color: #eee;
  padding: 15px 0;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.footer-content {
  text-align: center;
}

.footer-content .roundbox {
  margin: 4px;
  background-color: white;
  border-radius: 25%;
  transition: background-color 0.2s ease-in-out;
}

.footer-content .roundbox svg {
  width: 24px;
  height: 24px;
  margin: 8px;
}

/*# sourceMappingURL=blog.css.map */
