ant-design/site/theme/static/highlight.less

158 lines
2.5 KiB
Plaintext
Raw Normal View History

/**
2016-06-11 16:25:26 +08:00
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
2016-04-23 16:09:22 +08:00
pre code {
2016-06-11 16:25:26 +08:00
display: block;
background: white;
color: #666;
line-height: 1.7;
border: 1px solid #e9e9e9;
padding: 10px 15px;
border-radius: 6px;
font-size: 13px;
white-space: pre;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
2016-04-23 16:09:22 +08:00
}
code[class*="language-"],
pre[class*="language-"] {
2016-06-11 16:25:26 +08:00
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
2016-06-11 16:25:26 +08:00
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
2016-06-11 16:25:26 +08:00
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
2016-04-23 16:09:22 +08:00
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
2016-06-11 16:25:26 +08:00
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
2016-06-11 16:25:26 +08:00
text-shadow: none;
background: #b3d4fc;
}
@media print {
2016-06-11 16:25:26 +08:00
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
2016-06-11 16:25:26 +08:00
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
2016-06-11 16:25:26 +08:00
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
2016-06-11 16:25:26 +08:00
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
2016-06-11 16:25:26 +08:00
color: slategray;
}
.token.punctuation {
2016-06-11 16:25:26 +08:00
color: #999;
}
.namespace {
2016-06-11 16:25:26 +08:00
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
2016-06-11 16:25:26 +08:00
color: #BB0606;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
2016-06-11 16:25:26 +08:00
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
2016-06-11 16:25:26 +08:00
color: #a67f59;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
2016-06-11 16:25:26 +08:00
color: #07a;
}
.token.function {
2016-06-11 16:25:26 +08:00
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
2016-06-11 16:25:26 +08:00
color: #e90;
}
.token.important,
.token.bold {
2016-06-11 16:25:26 +08:00
font-weight: bold;
}
.token.italic {
2016-06-11 16:25:26 +08:00
font-style: italic;
}
.token.entity {
2016-06-11 16:25:26 +08:00
cursor: help;
}