Find the Glassmorphism Card code used in this tutorial in below
Color code used:
Page Background Color:
#0e1538
CSS code used:
.cpcglass{
width: 200px;
height: 240px;
border: 1px solid rgba(255,255,255,0.1);
box-shadow: 0 25px 25px rgba(0,0,0,0.25);
border-radius: 10px;
backdrop-filter: blur(10px);
margin: 0 -45px;
background: linear-gradient(#fff2, transparent);
transition: 0.5s;
}
.cpcglasscontainer:hover .cpcglass{
transform: rotate(0deg);
margin: 0 20px;
}
.cpcglasstitle{
background: rgba(255,255,255, 0.05);
}