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.

_link.scss 243B

1234567891011
  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. }