79 lines
1.4 KiB
CSS
79 lines
1.4 KiB
CSS
/*
|
|
Description: Magula style for highligh.js
|
|
Author: Ruslan Keba <rukeba@gmail.com>
|
|
Website: http://rukeba.com/
|
|
Version: 1.0
|
|
Date: 2009-01-03
|
|
Music: Aphex Twin / Xtal
|
|
*/
|
|
/* 伪元素 滚动条 边角修饰 **/
|
|
pre { border-radius: 5px; }
|
|
pre code::-webkit-scrollbar { width: 8px; height: 8px; background: rgba(0,0,0,0); } /*滚动槽*/
|
|
pre code::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; } /*滚动轴*/
|
|
pre code::-webkit-scrollbar-corner { background: rgba(0,0,0,0);} /*交点 */
|
|
.hljs ul { list-style: decimal-leading-zero ! important; }
|
|
.hljs ul li::before { position: relative; left: -12px; content:' '; background:#f4f4f4 ! important; margin-right: -10px }
|
|
|
|
|
|
.hljs {
|
|
display: block;
|
|
overflow-x: auto;
|
|
padding: 0.5em;
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
.hljs,
|
|
.hljs-subst {
|
|
color: black;
|
|
}
|
|
|
|
.hljs-string,
|
|
.hljs-title,
|
|
.hljs-symbol,
|
|
.hljs-bullet,
|
|
.hljs-attribute,
|
|
.hljs-addition,
|
|
.hljs-variable,
|
|
.hljs-template-tag,
|
|
.hljs-template-variable {
|
|
color: #050;
|
|
}
|
|
|
|
.hljs-comment,
|
|
.hljs-quote {
|
|
color: #777;
|
|
}
|
|
|
|
.hljs-number,
|
|
.hljs-regexp,
|
|
.hljs-literal,
|
|
.hljs-type,
|
|
.hljs-link {
|
|
color: #800;
|
|
}
|
|
|
|
.hljs-deletion,
|
|
.hljs-meta {
|
|
color: #00e;
|
|
}
|
|
|
|
.hljs-keyword,
|
|
.hljs-selector-tag,
|
|
.hljs-doctag,
|
|
.hljs-title,
|
|
.hljs-section,
|
|
.hljs-built_in,
|
|
.hljs-tag,
|
|
.hljs-name {
|
|
font-weight: bold;
|
|
color: navy;
|
|
}
|
|
|
|
.hljs-emphasis {
|
|
font-style: italic;
|
|
}
|
|
|
|
.hljs-strong {
|
|
font-weight: bold;
|
|
}
|