mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
31 lines
589 B
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>
|