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