/**
 * Github-like theme for Prism.js
 * @author Luke Askew http://github.com/lukeaskew
 */
code[class*="language-"],
pre[class*="language-"] {
  color: #333;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  tab-size: 4;
  hyphens: none;
  font:
    14px / normal "Monaco",
    "Menlo",
    "Ubuntu Mono",
    "Consolas",
    "source-code-pro",
    monospace;
  line-height: 1.3;
  direction: ltr;
  cursor: text;
}

.md-typeset .codehilite,
.md-typeset .highlight {
  border-radius: 0;
}

pre,
pre[class*="language-"] {
  border-left: 0.2rem solid #0084cc;
  position: relative;
  margin: 1.5625em 0;
  border-radius: 0;
  font-size: 0.64rem;
  overflow: auto;
}

p code,
li code,
table code {
  margin: 0;
  padding: 0.2em 0;
  font-size: 85%;
}
p code:before,
p code:after,
li code:before,
li code:after,
table code:before,
table code:after {
  letter-spacing: -0.2em;
  content: "\00a0";
}

pre,
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
}

:not(pre) > code[class*="language-"] {
  padding: 0.1em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #969896;
}
.token.punctuation,
.token.string,
.token.atrule,
.token.attr-value {
  color: #5d90cd;
}
.token.property,
.token.tag {
  color: #63a35c;
}
.token.boolean,
.token.number {
  color: #46a609;
}
.token.selector,
.punctuation:first-child,
.token.keyword,
.token.regex,
.token.important {
  color: #c52727;
}
.token.attr-name,
.token.attr-value,
.token.attribute {
  color: #39946a;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string {
  color: black;
}
.token.entity {
  cursor: help;
}

.namespace {
  opacity: 0.7;
}
