galaxy/Buttons/biswacpcode_curvy-crab-71.html

32 lines
506 B
HTML

<button>
HOVER ME
</button>
<style>
/* From Uiverse.io by biswacpcode - Tags: button */
button {
color: white;
text-decoration: none;
font-size: 25px;
border: none;
background: none;
font-weight: 600;
font-family: 'Poppins', sans-serif;
}
button::before {
margin-left: auto;
}
button::after, button::before {
content: '';
width: 0%;
height: 2px;
background: #f44336;
display: block;
transition: 0.5s;
}
button:hover::after, button:hover::before {
width: 100%;
}
</style>