Guest User

Untitled

a guest
Mar 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. .Btn {
  2. border-radius: 100px;
  3. height: 43px;
  4. color: #fff;
  5. text-transform: uppercase;
  6. position: relative;
  7. min-width: 210px;
  8. font-weight: 300;
  9. font-size: 16px;
  10. line-height: 1;
  11. display: block;
  12. cursor: pointer;
  13. top: 100px;
  14. left: 300px;
  15. font-family: 'Circe', 'Trebuchet MS', 'Tahoma', 'Arial', 'sans-serif';
  16. z-index: 20;
  17. transform: scale(3);
  18. border: none;
  19. background-color: #f84f78;
  20. background-image: linear-gradient(90deg, #f84f78 50%, white 50%);
  21. background-size: 200% 100%;
  22. background-position: 0 0;
  23. animation: bgpout .25s;
  24. }
  25. .Btn:hover {
  26. color: #316fdf;
  27. animation: bgpin .25s;
  28. animation-fill-mode: forwards;
  29. }
  30. @keyframes bgpin {
  31. from {
  32. background-position: 0 0;
  33. }
  34. to {
  35. background-position: -100% 0;
  36. }
  37. }
  38. @keyframes bgpout {
  39. from {
  40. background-position: -100% 0;
  41. }
  42. to {
  43. background-position: -200% 0;
  44. }
  45. }
Add Comment
Please, Sign In to add comment