12345678910111213141516171819202122232425262728293031 |
- /*************************************************
- * Reveal JS
- **************************************************/
- /* This is a copy of MathJax's `.mjx-chtml` with font-family added to override `.reveal span`. */
- /* See https://github.com/hakimel/reveal.js/issues/1924 */
- .reveal span.mjx-chtml {
- display: inline-block;
- line-height: 0;
- text-indent: 0;
- text-align: left;
- text-transform: none;
- font-style: normal;
- font-weight: normal;
- font-size: 100%;
- font-size-adjust: none;
- letter-spacing: normal;
- word-wrap: normal;
- word-spacing: normal;
- white-space: nowrap;
- float: none;
- direction: ltr;
- max-width: none;
- max-height: none;
- min-width: 0;
- min-height: 0;
- border: 0;
- margin: 0;
- padding: 1px 0;
- font-family: MJXc-TeX-math-I,MJXc-TeX-math-Ix,MJXc-TeX-math-Iw;
- }
|