OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Description: Foundation 4 docs style for highlight.js |
| 3 Author: Dan Allen <dan.j.allen@gmail.com> |
| 4 Website: http://foundation.zurb.com/docs/ |
| 5 Version: 1.0 |
| 6 Date: 2013-04-02 |
| 7 */ |
| 8 |
| 9 .hljs { |
| 10 display: block; |
| 11 overflow-x: auto; |
| 12 padding: 0.5em; |
| 13 background: #eee; |
| 14 -webkit-text-size-adjust: none; |
| 15 } |
| 16 |
| 17 .hljs-header, |
| 18 .hljs-decorator, |
| 19 .hljs-annotation { |
| 20 color: #000077; |
| 21 } |
| 22 |
| 23 .hljs-horizontal_rule, |
| 24 .hljs-link_url, |
| 25 .hljs-emphasis, |
| 26 .hljs-attribute { |
| 27 color: #070; |
| 28 } |
| 29 |
| 30 .hljs-emphasis { |
| 31 font-style: italic; |
| 32 } |
| 33 |
| 34 .hljs-link_label, |
| 35 .hljs-strong, |
| 36 .hljs-value, |
| 37 .hljs-string, |
| 38 .scss .hljs-value .hljs-string { |
| 39 color: #d14; |
| 40 } |
| 41 |
| 42 .hljs-strong { |
| 43 font-weight: bold; |
| 44 } |
| 45 |
| 46 .hljs-blockquote, |
| 47 .hljs-comment { |
| 48 color: #998; |
| 49 font-style: italic; |
| 50 } |
| 51 |
| 52 .asciidoc .hljs-title, |
| 53 .hljs-function .hljs-title { |
| 54 color: #900; |
| 55 } |
| 56 |
| 57 .hljs-class { |
| 58 color: #458; |
| 59 } |
| 60 |
| 61 .hljs-id, |
| 62 .hljs-pseudo, |
| 63 .hljs-constant, |
| 64 .hljs-hexcolor { |
| 65 color: teal; |
| 66 } |
| 67 |
| 68 .hljs-variable { |
| 69 color: #336699; |
| 70 } |
| 71 |
| 72 .hljs-bullet, |
| 73 .hljs-javadoc { |
| 74 color: #997700; |
| 75 } |
| 76 |
| 77 .hljs-pi, |
| 78 .hljs-doctype { |
| 79 color: #3344bb; |
| 80 } |
| 81 |
| 82 .hljs-code, |
| 83 .hljs-number { |
| 84 color: #099; |
| 85 } |
| 86 |
| 87 .hljs-important { |
| 88 color: #f00; |
| 89 } |
| 90 |
| 91 .smartquote, |
| 92 .hljs-label { |
| 93 color: #970; |
| 94 } |
| 95 |
| 96 .hljs-preprocessor, |
| 97 .hljs-pragma { |
| 98 color: #579; |
| 99 } |
| 100 |
| 101 .hljs-reserved, |
| 102 .hljs-keyword, |
| 103 .scss .hljs-value { |
| 104 color: #000; |
| 105 } |
| 106 |
| 107 .hljs-regexp { |
| 108 background-color: #fff0ff; |
| 109 color: #880088; |
| 110 } |
| 111 |
| 112 .hljs-symbol { |
| 113 color: #990073; |
| 114 } |
| 115 |
| 116 .hljs-symbol .hljs-string { |
| 117 color: #a60; |
| 118 } |
| 119 |
| 120 .hljs-tag { |
| 121 color: #007700; |
| 122 } |
| 123 |
| 124 .hljs-at_rule, |
| 125 .hljs-at_rule .hljs-keyword { |
| 126 color: #088; |
| 127 } |
| 128 |
| 129 .hljs-at_rule .hljs-preprocessor { |
| 130 color: #808; |
| 131 } |
| 132 |
| 133 .scss .hljs-tag, |
| 134 .scss .hljs-attribute { |
| 135 color: #339; |
| 136 } |
OLD | NEW |