/* http://prismjs.com/download.html?themes=prism-funky&languages=markup+css+clike+javascript&plugins=unescaped-markup+normalize-whitespace */
/**
 * prism.js Funky theme
 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	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;
}

/* Code blocks */
pre[class*="language-"] {
	padding: .4em .8em;
	margin: .5em 0;
	overflow: auto;
}

code[class*="language-"] {
	color: white;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	white-space: normal;
}

.token.comment {
	/*font: 125%/.8 var(--font-handwritten);*/
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #aaa;
}

.token.punctuation {
	color: #999;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
	color: hsl(80, 70%, 60%); /* yellowgreen */
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
	color: hsl(335, 80%, 60%); /* deep pink */
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.token.inserted {
	color: hsl(182, 39%, 69%);
}

.token.attr-value,
.token.keyword,
.token.variable {
	color: yellow;
}

.token.atrule,
.token.regex,
.token.important {
	color: orange;
}

.token.function {
	color: hsl(186, 60%, 60%); /* aqua */
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.token.deleted {
	color: red;
}

/* Fallback, in case JS does not run, to ensure the code is at least visible */
.lang-markup script[type='text/plain'],
.language-markup script[type='text/plain'],
script[type='text/plain'].lang-markup,
script[type='text/plain'].language-markup {
	display: block;
	font: 100% Consolas, Monaco, monospace;
	white-space: pre;
	overflow: auto;
}
