/**
* prism.js default theme for JavaScript, CSS and HTML * Based on dabblet (http://dabblet.com) * @author Lea Verou */
code, pre {
color: black; font-family: Consolas, Monaco, 'Andale Mono', monospace; direction: ltr; text-align: left; white-space: pre; word-spacing: normal; font-size: 1em; white-space: pre-wrap; -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4;
}
pre::-moz-selection, pre ::-moz-selection, code::-moz-selection, code ::-moz-selection {
text-shadow: none; background: #b3d4fc;
}
pre::selection, pre ::selection, code::selection, code ::selection {
text-shadow: none; background: #b3d4fc;
}
@media print {
code[class*="language-"], pre[class*="language-"] { text-shadow: none; }
}
.token.comment, .token.prolog, .token.doctype, .token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property, .token.tag, .token.boolean, .token.number {
color: #905;
}
.token.selector, .token.attr-name, .token.string {
color: #690;
}
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string {
color: #a67f59;
}
.token.atrule, .token.attr-value, .token.keyword {
color: #009BDD;
}
.token.regex, .token.important {
color: #e90;
}
.token.important {
font-weight: bold;
}
.token.entity {
cursor: help;
} pre.line-numbers {
position: relative; padding-left: 3.8em; counter-reset: linenumber;
}
pre.line-numbers > code {
position: relative;
}
.line-numbers .line-numbers-rows {
position: absolute; pointer-events: none; top: 0; font-size: 0.8rem; line-height: 1.1rem; left: -3.8em; width: 3em; /* works for line-numbers below 1000 lines */ letter-spacing: -1px; border-right: 1px solid #999; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.line-numbers-rows > span { pointer-events: none; display: block; counter-increment: linenumber; } .line-numbers-rows > span:before { content: counter(linenumber); color: #999; display: block; padding-right: 0.8em; text-align: right; }