پیشنمایش زنده
کد HTML
<div class="card"></div>
کد CSS
.card {
width: 190px;
height: 254px;
border-radius: 30px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 50px -12px inset,
rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
transition: all 0.3s ease-in-out;
background: linear-gradient(50deg, #c7d3dc, #d9e7f1);
background-size: 1px 25px;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
border: 1px solid #839db0;
cursor: pointer;
}
.card:hover {
background-position: 10px;
transform: scale(1.2);
}