custom.css 833 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. div section {
  2. text-align: justify;
  3. }
  4. #table-of-contents {
  5. text-align: left;
  6. }
  7. div .toctree-wrapper > ul {
  8. column-count: 2;
  9. margin: 0;
  10. }
  11. ul .toctree-l1 {
  12. margin: 0;
  13. -webkit-column-break-inside: avoid;
  14. page-break-inside: avoid;
  15. break-inside: avoid-column;
  16. }
  17. div .contents > ul {
  18. column-count: 2;
  19. margin: 0;
  20. }
  21. div .contents li {
  22. margin: 0;
  23. -webkit-column-break-inside: avoid;
  24. page-break-inside: avoid;
  25. break-inside: avoid-column;
  26. }
  27. div.admonition.info-icon > .admonition-title:before {
  28. content: "\f05a"; /* the fa-circle-info icon */
  29. }
  30. /* Fix white-space wrapping in tables.
  31. * See https://github.com/readthedocs/sphinx_rtd_theme/issues/1505
  32. * This is included via html_static_path and html_style in conf.py
  33. */
  34. .wy-table-responsive table td {
  35. white-space: normal;
  36. }