| OLD | NEW |
| 1 /** | 1 /** |
| 2 * prism.js Funky theme | 2 * prism.js Funky theme |
| 3 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-t
he-gaps/ | 3 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-t
he-gaps/ |
| 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 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | 9 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; |
| 10 direction: ltr; | 10 direction: ltr; |
| 11 text-align: left; | 11 text-align: left; |
| 12 white-space: pre; | 12 white-space: pre; |
| 13 word-spacing: normal; | 13 word-spacing: normal; |
| 14 word-break: normal; | 14 word-break: normal; |
| 15 word-wrap: normal; |
| 15 line-height: 1.5; | 16 line-height: 1.5; |
| 16 | 17 |
| 17 -moz-tab-size: 4; | 18 -moz-tab-size: 4; |
| 18 -o-tab-size: 4; | 19 -o-tab-size: 4; |
| 19 tab-size: 4; | 20 tab-size: 4; |
| 20 | 21 |
| 21 -webkit-hyphens: none; | 22 -webkit-hyphens: none; |
| 22 -moz-hyphens: none; | 23 -moz-hyphens: none; |
| 23 -ms-hyphens: none; | 24 -ms-hyphens: none; |
| 24 hyphens: none; | 25 hyphens: none; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 font-style: italic; | 107 font-style: italic; |
| 107 } | 108 } |
| 108 | 109 |
| 109 .token.entity { | 110 .token.entity { |
| 110 cursor: help; | 111 cursor: help; |
| 111 } | 112 } |
| 112 | 113 |
| 113 .token.deleted { | 114 .token.deleted { |
| 114 color: red; | 115 color: red; |
| 115 } | 116 } |
| OLD | NEW |