Neo Pill
Neumorphic · .btn-neo-pill
Text
Class name
Color hue
Radius · pill
Size
.btn-neo-pill {
display: inline-block;
padding: 13px 32px;
border: none;
border-radius: 999px;
background: #e0e5ec;
color: #4a5568;
font-family: inherit;
font-size: 15px;
font-weight: 600;
cursor: pointer;
box-shadow: 8px 8px 16px #bec3cf, -8px -8px 16px #ffffff;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-neo-pill:hover {
transform: translateY(-1px);
}
.btn-neo-pill:active {
transform: translateY(0);
box-shadow: inset 5px 5px 10px #bec3cf, inset -5px -5px 10px #ffffff;
}