Border Draw
Animated · .btn-border-draw
Text
Class name
Color hue
Radius · n/a
Size
.btn-border-draw {
position: relative;
display: inline-block;
padding: 13px 28px;
border: none;
background: transparent;
color: #e2e8f0;
font-family: inherit;
font-size: 15px;
font-weight: 600;
cursor: pointer;
}
.btn-border-draw::before,
.btn-border-draw::after {
content: "";
position: absolute;
width: 0;
height: 0;
}
.btn-border-draw::before {
top: 0;
left: 0;
border-top: 2px solid #f472b6;
border-right: 2px solid transparent;
transition: width 0.25s ease 0.25s, height 0.25s ease, border-color 0s ease 0.25s;
}
.btn-border-draw::after {
bottom: 0;
right: 0;
border-bottom: 2px solid #f472b6;
border-left: 2px solid transparent;
transition: width 0.25s ease 0.25s, height 0.25s ease, border-color 0s ease 0.25s;
}
.btn-border-draw:hover::before,
.btn-border-draw:hover::after {
width: 100%;
height: 100%;
border-color: #f472b6;
}