78 lines
952 B
CSS
78 lines
952 B
CSS
|
/*
|
||
|
|
||
|
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||
|
|
||
|
*/
|
||
|
|
||
|
.hljs {
|
||
|
display: block;
|
||
|
overflow-x: auto;
|
||
|
padding: 0.5em;
|
||
|
background: #F0F0F0;
|
||
|
}
|
||
|
|
||
|
.hljs,
|
||
|
.hljs-subst {
|
||
|
color: #444;
|
||
|
}
|
||
|
|
||
|
.hljs-keyword,
|
||
|
.hljs-attribute,
|
||
|
.hljs-selector-tag,
|
||
|
.hljs-meta-keyword,
|
||
|
.hljs-doctag,
|
||
|
.hljs-name {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.hljs-built_in,
|
||
|
.hljs-literal,
|
||
|
.hljs-bullet,
|
||
|
.hljs-code,
|
||
|
.hljs-addition {
|
||
|
color: #1F811F;
|
||
|
}
|
||
|
|
||
|
.hljs-regexp,
|
||
|
.hljs-symbol,
|
||
|
.hljs-variable,
|
||
|
.hljs-template-variable,
|
||
|
.hljs-link,
|
||
|
.hljs-selector-attr,
|
||
|
.hljs-selector-pseudo {
|
||
|
color: #BC6060;
|
||
|
}
|
||
|
|
||
|
.hljs-type,
|
||
|
.hljs-string,
|
||
|
.hljs-number,
|
||
|
.hljs-selector-id,
|
||
|
.hljs-selector-class,
|
||
|
.hljs-quote,
|
||
|
.hljs-template-tag,
|
||
|
.hljs-deletion {
|
||
|
color: #880000;
|
||
|
}
|
||
|
|
||
|
.hljs-title,
|
||
|
.hljs-section {
|
||
|
color: #880000;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.hljs-comment {
|
||
|
color: #888888;
|
||
|
}
|
||
|
|
||
|
.hljs-meta {
|
||
|
color: #2B6EA1;
|
||
|
}
|
||
|
|
||
|
.hljs-emphasis {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.hljs-strong {
|
||
|
font-weight: bold;
|
||
|
}
|