galaxy/Buttons/ArturCodeCraft_horrible-mule-54.html

31 lines
589 B
HTML

<a href="#" class="menu__link">Hover me!</a>
<style>
/* From Uiverse.io by ArturCodeCraft - Tags: button, links, btn */
/* <reset-style> ============================ */
a {
text-decoration: none;
}
/* <main-style> ============================ */
.menu__link {
color: #fff;
line-height: 2;
position: relative;
}
.menu__link::before {
content: '';
width: 0;
height: 2px;
border-radius: 2px;
background-color: #fff;
position: absolute;
bottom: -.25rem;
left: 50%;
transition: width .4s, left .4s;
}
.menu__link:hover::before {
width: 100%;
left: 0;
}
</style>