custom.css 631 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * custom.css
  3. * Copyright (C) 2018 Kovid Goyal
  4. *
  5. * Distributed under terms of the MIT license.
  6. */
  7. .italic {
  8. font-style: italic;
  9. }
  10. .sidebar-logo {
  11. height: 128px;
  12. }
  13. .major-features li {
  14. margin-bottom: 0.75ex;
  15. margin-top: 0.75ex;
  16. }
  17. .sidebar-tree a.current {
  18. font-style: italic;
  19. }
  20. details > summary {
  21. color: var(--color-link);
  22. cursor: pointer;
  23. text-decoration-color: var(--color-link-underline);
  24. text-decoration-line: underline;
  25. }
  26. /* pygments adds an underline to some white-space, this is particularly visible in
  27. * dark mode. Remove it. */
  28. .highlight .w {
  29. text-decoration: none
  30. }