nasg/templates/prism.css
Peter Molnar 5ec437de8f - CSS fixes and simplifications
- prism.js inlined (only for entries with code blocks)
- pandoc is a subclass is str now
- added 'nasg' logger
- minor bugfixes
2018-08-04 09:30:26 +01:00

74 lines
No EOL
667 B
CSS

.comment,
.block-comment,
.prolog,
.doctype,
.cdata {
color: darkgray;
}
.punctuation {
color:darkcyan;
}
.tag,
.attr-name,
.namespace,
.deleted {
color: #e2777a;
}
.function-name {
color: red;
}
.boolean,
.number,
.function {
color: darkorchid;
}
.property,
.class-name,
.constant,
.symbol {
color:cadetblue;
}
.selector,
.important,
.atrule,
.keyword,
.builtin {
color: darkorange;
}
.string,
.char,
.attr-value,
.regex,
.variable {
color:brown;
}
.operator,
.entity,
.url {
color: darkmagenta;
}
.important,
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.entity {
cursor: help;
}
.inserted {
color: green;
}