h1,
h2,
h3,
h4,
h5,
h6 {
  color: #101;
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 1.25em;
}

h3 {
  font-size: 1em;
}

a,
a:visited {
  color: #101;
  outline: 0;
  text-decoration: underline;
  transition: color 0.25s;
}

a:hover,
a:focus {
  color: #176abe;
  text-decoration: none;
}

.bare-link,
.bare-link:hover,
.bare-link:focus {
  color: #101;
  text-decoration: none;
}

li {
  margin-bottom: 0.5em;
}

.list-inline li {
  display: inline;
}

.inline-dl dt {
  clear: left;
  float: left;
  margin: 0 2rem 0 0;
  text-align: right;
}

.inline-dl dd {
  margin: 0 0 0.5rem;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.site-header {
  grid-area: site-header;
  grid-column: 1/-1;
}

.site-nav {
  grid-area: site-nav;
}

.site-footer {
  grid-area: site-footer;
}

.site-content {
  grid-area: site-content;
}

.entry-header {
  grid-area: entry-header;
}

.entry-content {
  grid-area: entry-content;
}

.entry-pagination {
  grid-area: entry-pagination;
}

.wrapper {
  margin: 0 auto;
}

@supports (display: grid) {
  .wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-areas: "site-header" "site-nav" "site-content" "site-footer";
    grid-template-rows: 40px auto auto;
    margin: 0 auto;
  }
}
.entry {
  display: flex;
  flex-wrap: wrap;
  grid-template-areas: "entry-header" "entry-content" "entry-footer";
}

@supports (display: grid) {
  .entry {
    display: grid;
    grid-template-rows: auto;
    margin: 0;
  }
}
.entry-header,
.entry-footer {
  flex: 0 1 100%;
  grid-column: 1/-1;
}

.entry-content {
  flex: 1 1 200px;
}

.item-grid {
  display: grid;
  grid-gap: 20px;
}

.item-grid {
  display: flex;
  flex-wrap: wrap;
}

.item-grid {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.item-header {
  margin-bottom: 0;
}

.item-header,
.item-footer {
  flex: 0 1 100%;
  grid-column: 1/-1;
  margin-left: 5px;
  margin-right: 5px;
}

.item-panel {
  flex: 1 1 200px;
  margin-left: 5px;
  margin-right: 5px;
}

@supports (display: grid) {
  .item-grid {
    margin: 0;
  }
  .item-header,
  .item-footer,
  .item-panel {
    margin-left: 0;
    margin-right: 0;
  }
  .item-panel {
    grid-auto-rows: minmax(150px, auto);
  }
}
.sketchbook-grid {
  display: flex;
  flex-wrap: wrap;
}

.sketchbook-panel {
  flex: 1 1 200px;
  padding-right: 10px;
}

@supports (display: grid) {
  .sketchbook-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, 28%);
    grid-template-rows: auto;
    margin: 0;
  }
  .sketchbook-panel {
    padding-right: 0;
  }
}
.sketchbook-header,
.sketchbook-footer {
  flex: 0 1 100%;
  grid-column: 1/-1;
}

.shop-grid {
  display: flex;
  flex-wrap: wrap;
}

.shop-panel {
  flex: 1 1 200px;
  padding-right: 10px;
}

@supports (display: grid) {
  .shop-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, 48%);
    grid-template-rows: auto;
    margin: 0;
  }
  .shop-panel {
    padding-right: 0;
  }
}
.shop-header,
.shop-footer {
  flex: 0 1 100%;
  grid-column: 1/-1;
}

@supports (display: grid) {
  .wrapper > * {
    margin: 0;
  }
}
@media (min-width: 640px) {
  .wrapper {
    grid-template-areas: "site-header" "site-nav" "site-content" "site-footer";
    grid-template-columns: auto;
    grid-template-rows: 40px auto auto;
    margin: 0 auto;
    max-width: 640px;
  }
  .sketchbook-grid {
    grid-template-columns: repeat(auto-fill, 20%);
  }
  .item-grid,
  .shop-grid {
    grid-template-columns: repeat(auto-fill, 200px);
  }
}
@media (min-width: 800px) {
  .wrapper {
    max-width: 60%;
  }
  .sketchbook-grid {
    grid-template-columns: repeat(auto-fill, 100px);
  }
}
@media (min-width: 640px) and (max-width: 799px) {
  .wrapper {
    max-width: 80%;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font: 1em/1.5 helvetica, sans-serif;
}

body {
  background-color: #fff;
  color: #101;
  font-feature-settings: "kern";
  font-size: 1rem;
  margin-top: 0;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
ul,
ol,
dd,
p,
figure,
pre,
table,
fieldset,
hr {
  margin-bottom: 1.5rem;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.accent {
  color: #ff2727;
}

.btn {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-paypall {
  background-color: #ffd390;
}

.btn-paypall:hover {
  color: #101;
}

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

.tight {
  margin: 0;
}

.margin-top {
  margin-top: 1.5rem;
}

.margin-top-more {
  margin-top: 3rem;
}

.margin-bottom {
  margin-bottom: 1.5rem;
}

.margin-bottom-more {
  margin-bottom: 3rem;
}

.list-grid li,
.list-grid p {
  margin-bottom: 2em;
}

.site-header a {
  color: #101;
}
.site-header h1 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.site-header .logo {
  display: inline;
  width: 100px;
}

.site-nav a:hover,
.site-nav a:focus {
  text-decoration: underline;
}
.site-nav .slected {
  color: red;
}
.site-nav ul {
  margin-top: 0;
  margin-bottom: 0;
}
.site-nav li {
  font-size: 1.5rem;
  margin-right: 1rem;
}
.site-nav li:last-child {
  margin-right: 0;
}

.about a.about,
.archive a.archive,
.portfolio a.portfolio,
.sketchbooks a.sketchbooks,
.shop a.shop,
.zines a.zines {
  color: red;
}
.about a.about a:hover,
.about a.about a:focus,
.archive a.archive a:hover,
.archive a.archive a:focus,
.portfolio a.portfolio a:hover,
.portfolio a.portfolio a:focus,
.sketchbooks a.sketchbooks a:hover,
.sketchbooks a.sketchbooks a:focus,
.shop a.shop a:hover,
.shop a.shop a:focus,
.zines a.zines a:hover,
.zines a.zines a:focus {
  text-decoration: none;
}

.menu li {
  display: inline;
}

.main-body {
  margin-bottom: 2rem;
}

.entry,
.post {
  font-size: 1.25rem;
}

.blog-post {
  max-width: 640px;
}
.blog-post h2 {
  font-size: 18px;
  margin-bottom: 0;
}
.blog-post p:first-child {
  margin-top: 0;
}

.entry-header h1 {
  margin-bottom: 8px;
}
.entry-header .permalink {
  /*
      color: $muted;
      a { color: $muted; }
  */
}
.entry-header .permalink a:hover,
.entry-header .permalink a:focus {
  border-bottom: solid;
  text-decoration: none;
}

.entry-footer ul {
  margin-top: 0;
}
.entry-footer .tags {
  float: right;
}

.blog-pagination {
  margin-top: 2rem;
}

.tags a:focus,
.tags a:hover {
  text-decoration: underline;
}
.tags .list-inline li {
  margin-right: 1rem;
  white-space: nowrap;
}

.archive-posts a:focus,
.archive-posts a:hover {
  text-decoration: underline;
}
.archive-posts li {
  height: 27px;
  overflow: hidden;
}
.archive-posts li time {
  margin-right: 1rem;
}

.tag::after {
  content: ",";
}

.tag:last-of-type::after {
  content: "";
}

article.sketchbooks {
  margin-top: 1.25rem;
}

.sketchbook-panel p {
  margin: 0;
}

.sketchbook-list li {
  margin-bottom: 1.5rem;
}

.sb-index h2 {
  text-transform: capitalize;
}

.sketchbook-page h2 {
  font-size: 16px;
  text-transform: capitalize;
}
.sketchbook-page h3 {
  font-size: 1em;
}
.sketchbook-page .inline-dl {
  font-size: 0.85rem;
}
.sketchbook-page .inline-dl dd {
  margin: 0 0 0.5rem 6rem;
}
.sketchbook-page .inline-dl dt {
  font-weight: normal;
  margin: 0;
  width: 2em;
}

.sb-nav {
  position: fixed;
  right: 2em;
  top: calc(50% - 4em);
}

.zines section {
  margin-bottom: 2rem;
}

.portfolio .color-block {
  font-size: 1.5rem;
}
.portfolio .color-block li {
  height: 8em;
}
.portfolio .color-block span {
  display: inline-block;
  margin: 1.5em 2em;
  padding: 1em;
}
.portfolio h3 {
  margin-bottom: 0;
}
.portfolio ul,
.portfolio ol {
  margin-top: 0;
}

.bg-om2014 {
  background-image: url("/image/portfolio/mail2014/om-2014-07-14-crop.jpg");
}
.bg-om2014 span {
  background-color: #fff;
}

.bg-om2013 {
  background-color: #e69340;
}

.bg-ncd2013 {
  background-color: #e10926;
}
.bg-ncd2013 span {
  margin: 1.5em 1.75em;
}

.bg-comics2013 {
  background-color: #52ad14;
}

.bg-qs-b-2016 {
  background-image: url("/image/drawing/quarter_sheet/qs-crop.gif");
}
.bg-qs-b-2016 span {
  background-color: #fff;
}

#Comics_page h1,
#Comics_page .nav-with-index {
  text-align: right;
}

form.cart {
  display: inline-block;
}

@media (min-width: 640px) {
  .about p,
  .posts p {
    font-size: 1.375rem;
  }
}
@media (max-width: 980px) {
  .sb-nav {
    position: relative;
    right: 0;
    text-align: right;
    top: 0;
  }
}

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