您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_link.scss 405B

1234567891011121314151617181920
  1. .link {
  2. cursor: pointer;
  3. color: $linkFontColor;
  4. @include transition(color .1s ease-out);
  5. &:hover {
  6. color: $linkHoverFontColor;
  7. text-decoration: underline;
  8. @include transition(color .1s ease-in);
  9. }
  10. }
  11. /**
  12. * Helper links are links that are meant to open a documentation page or more
  13. * detailed info.
  14. */
  15. .helper-link {
  16. @extend .link;
  17. font-size: 12px;
  18. }