TableOfContent_alt.css 883 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. Different way to display TOC: all links on same level in a horizontal list, divided by " | "
  3. */
  4. #toc {
  5. display: inline-block;
  6. margin-bottom: 1em;
  7. padding: .3em .5em;
  8. max-height: 4.7em;
  9. overflow: auto;
  10. }
  11. #toc:hover {
  12. max-height: initial;
  13. }
  14. #toc ul {
  15. padding: 0;
  16. list-style: none;
  17. text-align: left;
  18. }
  19. #toc-header {
  20. padding: 0;
  21. }
  22. #toc ul li {
  23. padding:0;
  24. float: left;
  25. }
  26. #toc ul li:not(:last-child) a::after {
  27. padding: 0 0.25em;
  28. content: "|";
  29. }
  30. /*
  31. #toc ul li a {
  32. padding: .25em;
  33. display: block;
  34. }
  35. */
  36. .toc-nav {
  37. display:none;
  38. margin-left: 1em;
  39. vertical-align: middle;
  40. /* absolute size - always small, regardless of header font size */
  41. font-size: 0.7rem;
  42. line-height:0.5rem;
  43. font-weight: normal;
  44. }
  45. h1:hover .toc-nav, h2:hover .toc-nav, h3:hover .toc-nav, h4:hover .toc-nav, h5:hover .toc-nav, h6:hover .toc-nav { display:initial; }