maximus87

Untitled

Sep 18th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1. .sqs-gallery-design-grid .slide {
  2.     position: relative;
  3. }
  4.  
  5. .sqs-gallery-design-grid .slide:hover a {
  6.     background-color: #000;
  7.     z-index: 100;
  8. }
  9. .sqs-gallery-design-grid .slide:hover img {
  10.     opacity: 0!important
  11. }
  12. .sqs-gallery-design-grid .slide .image-slide-title {
  13.     position: absolute;
  14.     opacity: 0;
  15.     -webkit-transform: translatey(0);
  16.     -ms-transform: translatey(0);
  17.     bottom: 40%;
  18.     transition: .2s all ease;
  19.     -webkit-transition: .2s all ease;
  20.     color: #fff;
  21.     font-size: 30px!important;
  22.     visibility: hidden;
  23. }
  24. .sqs-gallery-design-grid .slide:hover .image-slide-title {
  25.     -webkit-transform: translatey(50%);
  26.     -ms-transform: translatey(50%);
  27.     bottom: 50%;
  28.     visibility: visible;
  29.     opacity: 1;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment