Facebook
From Thuancutee, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 79
  1. // <div class="demo">
  2. // <a href="">
  3. //    <img src="https://cdn4.buysellads.net/uu/7/95310/1625099297-cssv1.png" alt="">
  4. // </a>
  5. // </div>
  6.  
  7. .demo {
  8.   width: 300px;
  9.   height: 385px;
  10.   padding: 6px;
  11.   border: 1px solid #ccc;
  12.   margin: 50px;
  13.   border-radius: 4px;
  14.   &:hover {
  15.     img {
  16.       transform: rotate(-2deg) translateY(-5px) scale(1.025);
  17.       box-shadow: 0 5px 10px 8px rgba($color: #ccc, $alpha: 0.5);
  18.       border-radius: 4px;
  19.     }
  20.   }
  21.  
  22.   img {
  23.     max-width: 100%;
  24.     width: 100%;
  25.     object-fit: cover;
  26.     border-radius: 6px;
  27.     transition: all 0.15s ease;
  28.     box-shadow: 0 0 4px 2px rgba($color: #ccc, $alpha: 0.2);
  29.   }
  30. }