Slide Fill Up
Animated · .btn-slide-fill-up
Text
Class name
Color hue
Radius · 10px
Size
.btn-slide-fill-up {
position: relative;
z-index: 0;
overflow: hidden;
display: inline-block;
padding: 12px 26px;
border: 2px solid #14b8a6;
border-radius: 10px;
background: transparent;
color: #14b8a6;
font-family: inherit;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: color 0.3s ease;
}
.btn-slide-fill-up::before {
content: "";
position: absolute;
inset: 0;
z-index: -1;
border-radius: 8px;
background: #14b8a6;
transform: scaleY(0);
transform-origin: bottom;
transition: transform 0.3s ease;
}
.btn-slide-fill-up:hover {
color: #042f2e;
}
.btn-slide-fill-up:hover::before {
transform: scaleY(1);
}