mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
53 lines
918 B
HTML
53 lines
918 B
HTML
<button class="button">
|
|
CLICK ME
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Bodyhc - Tags: button, bootsrap button, business, 3d button */
|
|
button {
|
|
--color: #560bad;
|
|
background-color: #fff;
|
|
font-family: inherit;
|
|
display: inline-block;
|
|
width: 8em;
|
|
height: 2.6em;
|
|
line-height: 2.5em;
|
|
margin: 20px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: 2px solid var(--color);
|
|
transition: color .5s;
|
|
z-index: 1;
|
|
font-size: 17px;
|
|
border-radius: 6px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
color: var(--color);
|
|
}
|
|
|
|
button:before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
background: var(--color);
|
|
height: 150px;
|
|
width: 200px;
|
|
border-radius: 50px;
|
|
bottom: 100%;
|
|
right: 100%;
|
|
transition: .8s ease;
|
|
}
|
|
|
|
button:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
button:hover:before {
|
|
bottom: -30px;
|
|
left: -30px;
|
|
}
|
|
|
|
button:active:before {
|
|
background: #3a0ca3;
|
|
transition: background 2s;
|
|
}
|
|
</style>
|