Advertisement
Guest User

Sassy Ghost Button

a guest
Apr 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. @mixin ghost-button {
  2. font: $button-font;
  3. background-color: transparent;
  4. border-color: $main-color;
  5. border-width: 2px;
  6. border-radius: 30px;
  7. color: $main-color;
  8. font-size: 1.2em;
  9. height: 50px;
  10. width: 170px;
  11. transition: background-color 0.3s ease-out,
  12. border-color 0.3s ease-out;
  13. @include small-screens {
  14. font-size: .8em;
  15. height: 40px;
  16. width: 120px;
  17.  
  18. }
  19.  
  20. &:hover {
  21. background-color: $main-color;
  22. background-color: rgba(255, 255, 255, 0.4);
  23. border-color: $main-color;
  24. border-color: rgba(255, 255, 255, 0.4);
  25. }
  26.  
  27. &:active{
  28. background-color: rgba(255, 255, 255, 0.8);;
  29. color: white;
  30. border-color: #fff;
  31. border-color: rgba(255, 255, 255, 0.4);
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement