mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
54 lines
No EOL
803 B
HTML
54 lines
No EOL
803 B
HTML
<button class="btn-1">Hover me!</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by natelyt12 - Tags: button */
|
|
.btn-1 {
|
|
position: relative;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 20px;
|
|
transition: 300ms;
|
|
box-sizing: border-box;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.btn-1::before {
|
|
content: "";
|
|
position: absolute;
|
|
background-color: white;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0px;
|
|
height: 100%;
|
|
transition: 300ms;
|
|
transform: skewX(-20deg);
|
|
}
|
|
|
|
.btn-1::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0px;
|
|
height: 100%;
|
|
transition: 300ms;
|
|
background-color: white;
|
|
opacity: 0.2;
|
|
transform: skewX(-20deg);
|
|
}
|
|
|
|
.btn-1:hover {
|
|
padding-left: 25px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-1:hover::before {
|
|
width: 5px;
|
|
}
|
|
|
|
.btn-1:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
</style>
|
|
|