19K views
1.card { 2 width: 190px; 3 height: 254px; 4 background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%); 5 border-radius: 20px; 6 transition: all .3s; 7} 8 9.card2 { 10 width: 190px; 11 height: 254px; 12 background-color: #1a1a1a; 13 border-radius:; 14 transition: all .2s; 15} 16 17.card2:hover { 18 transform: scale(0.98); 19 border-radius: 20px; 20} 21 22.card:hover { 23 box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30); 24}
MIT License