You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
1009 B

  1. @media only screen and (max-width:1439px) {
  2. .sidetoc {
  3. display: none;
  4. }
  5. }
  6. @media only screen and (min-width:1440px) {
  7. main {
  8. position: relative;
  9. margin-left: 100px !important;
  10. }
  11. .sidetoc {
  12. margin-left: auto;
  13. margin-right: auto;
  14. left: calc(100% + (var(--content-max-width))/4 - 140px);
  15. position: absolute;
  16. text-align: right;
  17. }
  18. .pagetoc {
  19. position: fixed;
  20. width: 250px;
  21. overflow: auto;
  22. right: 20px;
  23. height: calc(100% - var(--menu-bar-height));
  24. }
  25. .pagetoc a {
  26. color: var(--fg) !important;
  27. display: block;
  28. padding: 5px 15px 5px 10px;
  29. text-align: left;
  30. text-decoration: none;
  31. }
  32. .pagetoc a:hover,
  33. .pagetoc a.active {
  34. background: var(--sidebar-bg) !important;
  35. color: var(--sidebar-fg) !important;
  36. }
  37. .pagetoc .active {
  38. background: var(--sidebar-bg);
  39. color: var(--sidebar-fg);
  40. }
  41. }