anchor.less 286 B

123456789101112131415161718192021
  1. .anchorjs-link {
  2. color: inherit;
  3. }
  4. @media (max-width: 480px) {
  5. .anchorjs-link {
  6. display: none;
  7. }
  8. }
  9. *:hover > .anchorjs-link {
  10. opacity: .75;
  11. transition: color .16s linear;
  12. }
  13. *:hover > .anchorjs-link:hover,
  14. .anchorjs-link:focus {
  15. text-decoration: none;
  16. opacity: 1;
  17. }