Lift Off
Animated · .btn-lift-off
Text
Class name
Color hue
Radius · 12px
Size
.btn-lift-off {
display: inline-block;
padding: 12px 26px;
border: none;
border-radius: 12px;
background: #f97316;
color: #ffffff;
font-family: inherit;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-lift-off:hover {
transform: translateY(-5px);
box-shadow: 0 12px 20px -6px rgba(249, 115, 22, 0.6);
}
.btn-lift-off:active {
transform: translateY(-2px);
box-shadow: 0 6px 10px -4px rgba(249, 115, 22, 0.5);
}