Shadow Lift
Solid · .btn-shadow-lift
Text
Class name
Color hue
Radius · 12px
Size
.btn-shadow-lift {
display: inline-block;
padding: 12px 26px;
border: none;
border-radius: 12px;
background: #ffffff;
color: #111827;
font-family: inherit;
font-size: 15px;
font-weight: 600;
cursor: pointer;
box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-shadow-lift:hover {
transform: translateY(-3px);
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.btn-shadow-lift:active {
transform: translateY(-1px);
}