1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee
Files
zxd_ctrlcenter/plugin/code/z_codeplus.css
2022-01-26 02:20:35 +08:00

76 lines
2.5 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@charset "utf-8";
/**
* 作品Z-Blog代码高亮+复制
* 作者:隔壁老李
* 网址https://zpanz.com
* 本插件完全免费,请勿删除此段内容
*/
@font-face {
font-family: 'MonacoRegular';
src: url(font/monaco-webfont.eot);
src: url(font/monaco-webfont.eot?#iefix) format('embedded-opentype'), url(font/monaco-webfont.woff) format('woff'), url(font/monaco-webfont.ttf) format('truetype'), url(font/monaco-webfont.svg#MonacoRegular) format('svg');
font-weight: normal;
font-style: normal
}
code[class*="language-"], pre[class*="language-"] {
color:#fff;
text-shadow: none;
font-size: 1rem;
font-family:Monaco,'MonacoRegular','Microsoft Yahei',monospace;
}
pre[class*="language-"] {
border-radius: 0.3em;
margin: .5em 0 2em 0;
}
:not(pre) > code[class*="language-"], pre[class*="language-"] {
background: #1f1f1f;
}
.prism-token.prism-punctuation {
color: #fff;
}
.prism-token.property, .prism-token.prism-tag, .prism-token.prism-boolean, .prism-token.prism-number, .prism-token.prism-constant, .prism-token.prism-symbol, .prism-token.prism-deleted {
color: #f92650;
}
.prism-token.prism-selector, .prism-token.prism-attr-name, .prism-token.prism-string, .prism-token.prism-char, .prism-token.prism-builtin, .prism-token.prism-inserted {
color: #a6e22d;
}
.prism-token.prism-operator, .prism-token.prism-entity, .prism-token.prism-url, .prism-language-css .prism-token.prism-string, .prism-style .prism-token.prism-string {
color: #fff;
background: none;
}
.prism-token.prism-atrule, .prism-token.prism-attr-value, .prism-token.prism-keyword {
color: #e6db5d;
}
.prism-token.prism-function {
color: #DD4A68;
}
.prism-line-numbers .prism-line-numbers-rows {
border-right: none;
}
.prism-line-numbers-rows > span:before {
color: #868686;
padding-right: none;
text-align: center;
}
div.prism-show-language > div.prism-show-language-label[data-language] {
background-color: #f4f5f9;
border: 1px solid #f4f5f9;
font-size: 0.8em;
border-radius: 0 0.3em 0;
padding: 0 0.5em;
}
.prism-show-language-label img.z_go{
display: inline;
margin: 0 8px 3px 0;
}
div.post-body code {
border: none;
}
.cdm_code{display:none;padding:10px;font-size: 1rem;
font-family:Monaco,'MonacoRegular','Microsoft Yahei',monospace;color: #404b69;background-color: #f4f5f9; margin: .5em 0 2em 0;}
.zcodehide{display:none;}
textarea.zcodeshow{display:block;width: 100%;}
.cdmtip{position:fixed;top:50%;left:50%;color:#f90;font-size:18px;font-family:'\5FAE\8F6F\96C5\9ED1';margin-top:-10px}