Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. a {
  2. position: relative;
  3. &:after {
  4. content: '';
  5. position: absolute;
  6. width: 0;
  7. height: 3px;
  8. display: block;
  9. margin-top: 2px;
  10. left: 0;
  11. transition: width .5s ease;
  12. -webkit-transition: width .5s ease;
  13. }
  14. &:hover:after {
  15. width: 100%;
  16. right: 0;
  17. background: $charcoal;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement