_elements.links.scss 477 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Styling for links
  3. */
  4. a,
  5. a:visited {
  6. color: $color-links;
  7. text-decoration: none;
  8. }
  9. // Anchor links
  10. // Uncomment this after https://github.com/jupyter/nbconvert/pull/1101 is released
  11. // main.jupyter-page {
  12. // a.anchor-link {
  13. // visibility: hidden;
  14. // font-size: 15px;
  15. // padding-left: 5px;
  16. // i {
  17. // font-style: normal;
  18. // }
  19. // }
  20. // h2, h3, h4, h5 {
  21. // &:hover a.anchor-link {
  22. // visibility: visible;
  23. // }
  24. // }
  25. // }