| OLD | NEW |
| 1 /** | 1 /** |
| 2 * prism.js default theme for JavaScript, CSS and HTML | 2 * prism.js default theme for JavaScript, CSS and HTML |
| 3 * Based on dabblet (http://dabblet.com) | 3 * Based on dabblet (http://dabblet.com) |
| 4 * @author Lea Verou | 4 * @author Lea Verou |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 code[class*="language-"], | 7 code[class*="language-"], |
| 8 pre[class*="language-"] { | 8 pre[class*="language-"] { |
| 9 color: black; | 9 color: black; |
| 10 text-shadow: 0 1px white; | 10 text-shadow: 0 1px white; |
| 11 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | 11 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; |
| 12 direction: ltr; | 12 direction: ltr; |
| 13 text-align: left; | 13 text-align: left; |
| 14 white-space: pre; | 14 white-space: pre; |
| 15 word-spacing: normal; | 15 word-spacing: normal; |
| 16 word-break: normal; | 16 word-break: normal; |
| 17 word-wrap: normal; |
| 17 line-height: 1.5; | 18 line-height: 1.5; |
| 18 | 19 |
| 19 -moz-tab-size: 4; | 20 -moz-tab-size: 4; |
| 20 -o-tab-size: 4; | 21 -o-tab-size: 4; |
| 21 tab-size: 4; | 22 tab-size: 4; |
| 22 | 23 |
| 23 -webkit-hyphens: none; | 24 -webkit-hyphens: none; |
| 24 -moz-hyphens: none; | 25 -moz-hyphens: none; |
| 25 -ms-hyphens: none; | 26 -ms-hyphens: none; |
| 26 hyphens: none; | 27 hyphens: none; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 .token.bold { | 127 .token.bold { |
| 127 font-weight: bold; | 128 font-weight: bold; |
| 128 } | 129 } |
| 129 .token.italic { | 130 .token.italic { |
| 130 font-style: italic; | 131 font-style: italic; |
| 131 } | 132 } |
| 132 | 133 |
| 133 .token.entity { | 134 .token.entity { |
| 134 cursor: help; | 135 cursor: help; |
| 135 } | 136 } |
| OLD | NEW |