custom.css 798 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* Indentation. */
  2. div.doc-contents:not(.first) {
  3. padding-left: 25px;
  4. border-left: 4px solid rgba(230, 230, 230);
  5. margin-bottom: 80px;
  6. }
  7. /* Don't capitalize names. */
  8. h5.doc-heading {
  9. text-transform: none !important;
  10. }
  11. /* Don't use vertical space on hidden ToC entries. */
  12. h6.hidden-toc {
  13. margin: 0 !important;
  14. position: relative;
  15. top: -70px;
  16. }
  17. h6.hidden-toc::before {
  18. margin-top: 0 !important;
  19. padding-top: 0 !important;
  20. }
  21. /* Don't show permalink of hidden ToC entries. */
  22. h6.hidden-toc a.headerlink {
  23. display: none;
  24. }
  25. /* Avoid breaking parameters name, etc. in table cells. */
  26. td code {
  27. word-break: normal !important;
  28. }
  29. /* For pieces of Markdown rendered in table cells. */
  30. td p {
  31. margin-top: 0 !important;
  32. margin-bottom: 0 !important;
  33. }