Guest User

Untitled

a guest
Feb 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. .btn {
  2. max-width: 150px;
  3. position: relative;
  4. overflow: hidden;
  5. padding: 5px 40px;
  6. border: 1px solid #999;
  7. border-radius: 5px;
  8. color: #fff;
  9. font-size: 14px;
  10. }
  11.  
  12. .btn::after {
  13. content: "";
  14. position: absolute;
  15. top: -50%;
  16. right: -50%;
  17. bottom: -50%;
  18. left: -50%;
  19. background: linear-gradient(
  20. to bottom,
  21. rgba(172, 255, 172, 0),
  22. rgba(255,255,255,0.75) 50%,
  23. rgba(172, 255, 172, 0));
  24. transform: rotateZ(60deg) translate(-5em, 7.5em);
  25. }
  26. .btn:hover::after, .btn:focus::after {
  27. animation: sheen 1s forwards;
  28. }
  29. @keyframes sheen {
  30. 100% {
  31. transform: rotateZ(60deg) translate(1em, -9em);
  32. }
  33. }
Add Comment
Please, Sign In to add comment