mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
58 lines
852 B
HTML
58 lines
852 B
HTML
<button class="button">
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Remon125 - Tags: button, smooth button */
|
|
button {
|
|
padding: 15px 60px;
|
|
background: transparent;
|
|
border: 2px solid #6528F7;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: flex;
|
|
overflow: hidden;
|
|
transition: all 0.5s;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
button span {
|
|
transition: all 0.5s;
|
|
z-index: -1;
|
|
}
|
|
|
|
button::after,
|
|
button::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 0;
|
|
height: 100%;
|
|
background: #6528F7;
|
|
top: 0;
|
|
transform: skewX(35deg);
|
|
transition: all 0.5s;
|
|
z-index: -1;
|
|
}
|
|
|
|
button::after {
|
|
left: -20px;
|
|
}
|
|
|
|
button::before {
|
|
right: -20px;
|
|
}
|
|
|
|
button:hover::after {
|
|
width: 50%;
|
|
left: 0;
|
|
}
|
|
|
|
button:hover::before {
|
|
width: 50%;
|
|
right: 0;
|
|
}
|
|
|
|
</style>
|