PageRenderTime 161ms CodeModel.GetById 69ms app.highlight 67ms RepoModel.GetById 13ms app.codeStats 0ms

/samples/scalate-presentation/src/highlight/styles/dark.css

http://github.com/scalate/scalate
CSS | 109 lines | 96 code | 8 blank | 5 comment | 0 complexity | fdf27fe311e9ee7438ffb9703451ec3d MD5 | raw file
  1/*
  2
  3Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  4
  5*/
  6
  7pre code[class]:after {
  8  content: 'highlight: ' attr(class);
  9  display: block; text-align: right;
 10  font-size: smaller;
 11  color: #CCC; background: white;
 12  border-top: solid 1px black;
 13  padding-top: 0.5em;
 14}
 15
 16pre code {
 17  display: block;
 18  background: #444;
 19}
 20
 21pre .keyword,
 22pre .literal,
 23pre .change,
 24pre .winutils,
 25pre .flow,
 26pre .lisp .title,
 27pre .tex .special {
 28  color: white;
 29}
 30
 31pre code,
 32pre .ruby .subst {
 33  color: #DDD;
 34}
 35
 36pre .string,
 37pre .function .title,
 38pre .class .title,
 39pre .ini .title,
 40pre .tag .attribute .value,
 41pre .css .rules .value,
 42pre .preprocessor,
 43pre .ruby .symbol,
 44pre .ruby .symbol .string,
 45pre .ruby .symbol .keyword,
 46pre .ruby .symbol .keymethods,
 47pre .ruby .instancevar,
 48pre .ruby .class .parent,
 49pre .built_in,
 50pre .sql .aggregate,
 51pre .django .template_tag,
 52pre .django .variable,
 53pre .smalltalk .class,
 54pre .javadoc,
 55pre .ruby .string,
 56pre .django .filter .argument,
 57pre .smalltalk .localvars,
 58pre .smalltalk .array,
 59pre .attr_selector,
 60pre .pseudo,
 61pre .addition,
 62pre .stream,
 63pre .envvar,
 64pre .apache .tag,
 65pre .apache .cbracket,
 66pre .tex .command {
 67  color: #D88;
 68}
 69
 70pre .comment,
 71pre .java .annotation,
 72pre .python .decorator,
 73pre .template_comment,
 74pre .pi,
 75pre .doctype,
 76pre .deletion,
 77pre .shebang,
 78pre .apache .sqbracket,
 79pre .tex .formula {
 80  color: #777;
 81}
 82
 83pre .keyword,
 84pre .literal,
 85pre .css .id,
 86pre .phpdoc,
 87pre .function .title,
 88pre .class .title,
 89pre .vbscript .built_in,
 90pre .sql .aggregate,
 91pre .rsl .built_in,
 92pre .smalltalk .class,
 93pre .xml .tag .title,
 94pre .diff .header,
 95pre .chunk,
 96pre .winutils,
 97pre .bash .variable,
 98pre .lisp .title,
 99pre .apache .tag,
100pre .tex .special {
101  font-weight: bold;
102}
103
104pre .html .css,
105pre .html .javascript,
106pre .html .vbscript,
107pre .tex .formula {
108  opacity: 0.5;
109}