Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. .hover-effect-container {
  2. position: relative;
  3. width: 50%;
  4. }
  5.  
  6. .hover-effect-image {
  7. display: block;
  8. width: 100%;
  9. height: auto;
  10. }
  11.  
  12. .hover-effect-overlay {
  13. position: absolute;
  14. top: 0;
  15. bottom: 0;
  16. left: 0;
  17. right: 0;
  18. height: 100%;
  19. width: 100%;
  20. opacity: 0;
  21. transition: .5s ease;
  22. background-color: #008CBA;
  23. }
  24.  
  25. .hover-effect-container:hover .hover-effect-overlay {
  26. opacity: 1;
  27. }
  28.  
  29. .hover-effect-text {
  30. color: white;
  31. font-size: 20px;
  32. position: absolute;
  33. top: 50%;
  34. left: 50%;
  35. -webkit-transform: translate(-50%, -50%);
  36. -ms-transform: translate(-50%, -50%);
  37. transform: translate(-50%, -50%);
  38. text-align: center;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement