Skip to content
Snippets Groups Projects
Commit b12ea92f authored by Malthe's avatar Malthe
Browse files

Fix issue with commit 0482d521: styles.css now correctly imports into the online docs.

Fix an issue where a rogue </div> in Proof.md was causing display issues on the online docs.
parent 4601d131
No related branches found
No related tags found
No related merge requests found
...@@ -182,14 +182,15 @@ Here is a proof of the great and wonderful theorem. ...@@ -182,14 +182,15 @@ Here is a proof of the great and wonderful theorem.
<div class="proof-column">Lines don't need to have <code>proof-num</code> or <code>proof-block</code></div> <div class="proof-column">Lines don't need to have <code>proof-num</code> or <code>proof-block</code></div>
<div class="proof-column">With further comments.</div> <div class="proof-column">With further comments.</div>
</div> </div>
<div class="proof-line"> <div class="proof-line">
<div class="proof-column">The proof continues.</div> <div class="proof-column">The proof continues.</div>
<div class="proof-column-2">With further comments.</div> <div class="proof-column-2">With further comments.</div>
</div> </div>
<div class="proof-line"> <div class="proof-line">
<div class="proof-column">This concludes the proof.</div> <div class="proof-column">This concludes the proof.</div>
</div> </div>
</div>
It is possible to use `proof-column-2` style in the first column, but this looks odd and is not recommended. The `proof-column-2` style is intended for only the second column. The `proof-column` style is intended to be used in both columns. It is possible to use `proof-column-2` style in the first column, but this looks odd and is not recommended. The `proof-column-2` style is intended for only the second column. The `proof-column` style is intended to be used in both columns.
......
...@@ -14,6 +14,7 @@ theme: ...@@ -14,6 +14,7 @@ theme:
docs_dir: 'doc' docs_dir: 'doc'
extra_css: extra_css:
- custom.css - custom.css
- https://combinatronics.com/maths/moodle-qtype_stack/master/styles.css
markdown_extensions: markdown_extensions:
- mdx_math - mdx_math
- extra - extra
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment