Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. .items__list__item__link {
  2. display: block;
  3. position: absolute;
  4. top: .5rem;
  5. right: .5rem;
  6. bottom: .5rem;
  7. left: .5rem;
  8. box-shadow: 0 3px 8px rgba(0, 0, 0, .15)
  9. }
  10.  
  11.  
  12.  
  13. .items__list__item__link:hover::before {
  14. opacity: 1
  15. }
  16.  
  17. .items__list__item__link::before {
  18. content: "";
  19. position: absolute;
  20. top: 4px;
  21. left: 4px;
  22. right: 4px;
  23. bottom: 4px;
  24. border: 4px solid #fff;
  25. z-index: 2;
  26. box-shadow: 0 0 0 4px #184c63;
  27. opacity: 0;
  28. pointer-events: none
  29. }
  30.  
  31. .items__list__item__link::after {
  32. content: "";
  33. display: block;
  34. position: absolute;
  35. top: 50%;
  36. left: 50%;
  37. width: 4rem;
  38. height: 4rem;
  39. margin-top: -2rem;
  40. margin-left: -2rem;
  41. border-top: .5rem solid rgba(0, 0, 0, .05);
  42. border-right: .5rem solid rgba(0, 0, 0, .05);
  43. border-bottom: .5rem solid rgba(0, 0, 0, .05);
  44. border-left: .5rem solid #fff;
  45. border-radius: 50%;
  46. -webkit-animation: rotate 1s infinite linear;
  47. animation: rotate 1s infinite linear
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement