/**
 * Coy without shadows
 * Based on Tim Shedor's Coy theme for prism.js
 * Author: RunDevelopment
 */
code[class*=language-],
pre[class*=language-] {
  color: black;
  background: none;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  overflow: auto;
  display: block;
}

/* Code blocks */
pre[class*=language-] {
  position: relative;
  border-left: 10px solid #ffd1e1;
  box-shadow: -1px 0 0 0 #ffd1e1, 0 0 0 1px GhostWhite;
  background-color: GhostWhite;
  background-image: linear-gradient(transparent 50%, rgba(136, 136, 136, 0.06) 50%);
  background-size: 3em 3em;
  background-origin: content-box;
  background-attachment: local;
  padding: 0 1em;
}

pre[class*=language-] > code {
  display: block;
}

/* Inline code */
:not(pre) > code[class*=language-] {
  position: relative;
  padding: 0.2em;
  border-radius: 0.3em;
  color: salmon;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline;
  white-space: normal;
  background-color: GhostWhite;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: MediumSeaGreen;
}

.token.punctuation {
  color: DarkSeaGray;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.function-name,
.token.constant,
.token.symbol,
.token.deleted {
  color: Black;
  font-weight: bold;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.function,
.token.builtin,
.token.inserted {
  color: MediumBlue;
}

.token.operator,
.token.entity,
.token.url,
.token.variable {
  color: DarkSlateGray;
}

.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
  color: MediumBlue;
  font-weight: bold;
}

.token.regex,
.token.important {
  color: #e90;
}

.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.important {
  font-weight: normal;
}

.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.namespace {
  opacity: 0.7;
}

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