Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. @mixin link($color) {
  2. color: $color;
  3. font-size: 1em;
  4. text-decoration: none;
  5. position: relative;
  6. display: inline-block;
  7. padding-bottom: 4px;
  8. &:after {
  9. bottom: 0;
  10. content: "";
  11. display: block;
  12. left: 50%;
  13. height: 2px;
  14. position: absolute;
  15. background: $color;
  16. @include transition(all .3s ease-in-out);
  17. width: 0;
  18. }
  19. &:hover:after {
  20. width: 100%;
  21. left: 0;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement