mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
45 lines
836 B
HTML
45 lines
836 B
HTML
<button>
|
|
Hover Over
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by WhiteNervosa - Tags: button */
|
|
button {
|
|
font-size: 18px;
|
|
color: #e1e1e1;
|
|
font-family: inherit;
|
|
font-weight: 800;
|
|
cursor: pointer;
|
|
position: relative;
|
|
border: none;
|
|
background: none;
|
|
text-transform: uppercase;
|
|
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition-duration: 400ms;
|
|
transition-property: color;
|
|
}
|
|
|
|
button:focus,
|
|
button:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
button:focus:after,
|
|
button:hover:after {
|
|
width: 100%;
|
|
left: 0%;
|
|
}
|
|
|
|
button:after {
|
|
content: "";
|
|
pointer-events: none;
|
|
bottom: -2px;
|
|
left: 50%;
|
|
position: absolute;
|
|
width: 0%;
|
|
height: 2px;
|
|
background-color: #fff;
|
|
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition-duration: 400ms;
|
|
transition-property: width, left;
|
|
}
|
|
</style>
|