OLD | NEW |
(Empty) | |
| 1 /* |
| 2 |
| 3 github.com style (c) Vasily Polovnyov <vast@whiteants.net> |
| 4 |
| 5 */ |
| 6 |
| 7 .hljs { |
| 8 display: block; |
| 9 overflow-x: auto; |
| 10 padding: 0.5em; |
| 11 color: #333; |
| 12 background: #f8f8f8; |
| 13 -webkit-text-size-adjust: none; |
| 14 } |
| 15 |
| 16 .hljs-comment, |
| 17 .hljs-template_comment, |
| 18 .diff .hljs-header, |
| 19 .hljs-javadoc { |
| 20 color: #998; |
| 21 font-style: italic; |
| 22 } |
| 23 |
| 24 .hljs-keyword, |
| 25 .css .rule .hljs-keyword, |
| 26 .hljs-winutils, |
| 27 .javascript .hljs-title, |
| 28 .nginx .hljs-title, |
| 29 .hljs-subst, |
| 30 .hljs-request, |
| 31 .hljs-status { |
| 32 color: #333; |
| 33 font-weight: bold; |
| 34 } |
| 35 |
| 36 .hljs-number, |
| 37 .hljs-hexcolor, |
| 38 .ruby .hljs-constant { |
| 39 color: #008080; |
| 40 } |
| 41 |
| 42 .hljs-string, |
| 43 .hljs-tag .hljs-value, |
| 44 .hljs-phpdoc, |
| 45 .hljs-dartdoc, |
| 46 .tex .hljs-formula { |
| 47 color: #d14; |
| 48 } |
| 49 |
| 50 .hljs-title, |
| 51 .hljs-id, |
| 52 .scss .hljs-preprocessor { |
| 53 color: #900; |
| 54 font-weight: bold; |
| 55 } |
| 56 |
| 57 .javascript .hljs-title, |
| 58 .hljs-list .hljs-keyword, |
| 59 .hljs-subst { |
| 60 font-weight: normal; |
| 61 } |
| 62 |
| 63 .hljs-class .hljs-title, |
| 64 .hljs-type, |
| 65 .vhdl .hljs-literal, |
| 66 .tex .hljs-command { |
| 67 color: #458; |
| 68 font-weight: bold; |
| 69 } |
| 70 |
| 71 .hljs-tag, |
| 72 .hljs-tag .hljs-title, |
| 73 .hljs-rules .hljs-property, |
| 74 .django .hljs-tag .hljs-keyword { |
| 75 color: #000080; |
| 76 font-weight: normal; |
| 77 } |
| 78 |
| 79 .hljs-attribute, |
| 80 .hljs-variable, |
| 81 .lisp .hljs-body { |
| 82 color: #008080; |
| 83 } |
| 84 |
| 85 .hljs-regexp { |
| 86 color: #009926; |
| 87 } |
| 88 |
| 89 .hljs-symbol, |
| 90 .ruby .hljs-symbol .hljs-string, |
| 91 .lisp .hljs-keyword, |
| 92 .clojure .hljs-keyword, |
| 93 .scheme .hljs-keyword, |
| 94 .tex .hljs-special, |
| 95 .hljs-prompt { |
| 96 color: #990073; |
| 97 } |
| 98 |
| 99 .hljs-built_in { |
| 100 color: #0086b3; |
| 101 } |
| 102 |
| 103 .hljs-preprocessor, |
| 104 .hljs-pragma, |
| 105 .hljs-pi, |
| 106 .hljs-doctype, |
| 107 .hljs-shebang, |
| 108 .hljs-cdata { |
| 109 color: #999; |
| 110 font-weight: bold; |
| 111 } |
| 112 |
| 113 .hljs-deletion { |
| 114 background: #fdd; |
| 115 } |
| 116 |
| 117 .hljs-addition { |
| 118 background: #dfd; |
| 119 } |
| 120 |
| 121 .diff .hljs-change { |
| 122 background: #0086b3; |
| 123 } |
| 124 |
| 125 .hljs-chunk { |
| 126 color: #aaa; |
| 127 } |
OLD | NEW |