OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine
(@thingsinjars) |
| 3 */ |
| 4 |
| 5 .hljs { |
| 6 display: block; |
| 7 overflow-x: auto; |
| 8 padding: 0.5em; |
| 9 color: #000; |
| 10 background: #f8f8ff; |
| 11 -webkit-text-size-adjust: none; |
| 12 } |
| 13 |
| 14 .hljs-comment, |
| 15 .hljs-template_comment, |
| 16 .diff .hljs-header, |
| 17 .hljs-javadoc { |
| 18 color: #408080; |
| 19 font-style: italic; |
| 20 } |
| 21 |
| 22 .hljs-keyword, |
| 23 .assignment, |
| 24 .hljs-literal, |
| 25 .css .rule .hljs-keyword, |
| 26 .hljs-winutils, |
| 27 .javascript .hljs-title, |
| 28 .lisp .hljs-title, |
| 29 .hljs-subst { |
| 30 color: #954121; |
| 31 } |
| 32 |
| 33 .hljs-number, |
| 34 .hljs-hexcolor { |
| 35 color: #40a070; |
| 36 } |
| 37 |
| 38 .hljs-string, |
| 39 .hljs-tag .hljs-value, |
| 40 .hljs-phpdoc, |
| 41 .hljs-dartdoc, |
| 42 .tex .hljs-formula { |
| 43 color: #219161; |
| 44 } |
| 45 |
| 46 .hljs-title, |
| 47 .hljs-id { |
| 48 color: #19469d; |
| 49 } |
| 50 .hljs-params { |
| 51 color: #00f; |
| 52 } |
| 53 |
| 54 .javascript .hljs-title, |
| 55 .lisp .hljs-title, |
| 56 .hljs-subst { |
| 57 font-weight: normal; |
| 58 } |
| 59 |
| 60 .hljs-class .hljs-title, |
| 61 .haskell .hljs-label, |
| 62 .tex .hljs-command { |
| 63 color: #458; |
| 64 font-weight: bold; |
| 65 } |
| 66 |
| 67 .hljs-tag, |
| 68 .hljs-tag .hljs-title, |
| 69 .hljs-rules .hljs-property, |
| 70 .django .hljs-tag .hljs-keyword { |
| 71 color: #000080; |
| 72 font-weight: normal; |
| 73 } |
| 74 |
| 75 .hljs-attribute, |
| 76 .hljs-variable, |
| 77 .instancevar, |
| 78 .lisp .hljs-body { |
| 79 color: #008080; |
| 80 } |
| 81 |
| 82 .hljs-regexp { |
| 83 color: #b68; |
| 84 } |
| 85 |
| 86 .hljs-class { |
| 87 color: #458; |
| 88 font-weight: bold; |
| 89 } |
| 90 |
| 91 .hljs-symbol, |
| 92 .ruby .hljs-symbol .hljs-string, |
| 93 .ruby .hljs-symbol .hljs-keyword, |
| 94 .ruby .hljs-symbol .keymethods, |
| 95 .lisp .hljs-keyword, |
| 96 .tex .hljs-special, |
| 97 .input_number { |
| 98 color: #990073; |
| 99 } |
| 100 |
| 101 .builtin, |
| 102 .constructor, |
| 103 .hljs-built_in, |
| 104 .lisp .hljs-title { |
| 105 color: #0086b3; |
| 106 } |
| 107 |
| 108 .hljs-preprocessor, |
| 109 .hljs-pragma, |
| 110 .hljs-pi, |
| 111 .hljs-doctype, |
| 112 .hljs-shebang, |
| 113 .hljs-cdata { |
| 114 color: #999; |
| 115 font-weight: bold; |
| 116 } |
| 117 |
| 118 .hljs-deletion { |
| 119 background: #fdd; |
| 120 } |
| 121 |
| 122 .hljs-addition { |
| 123 background: #dfd; |
| 124 } |
| 125 |
| 126 .diff .hljs-change { |
| 127 background: #0086b3; |
| 128 } |
| 129 |
| 130 .hljs-chunk { |
| 131 color: #aaa; |
| 132 } |
| 133 |
| 134 .tex .hljs-formula { |
| 135 opacity: 0.5; |
| 136 } |
OLD | NEW |