mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
59 lines
962 B
HTML
59 lines
962 B
HTML
<button class="button"> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by nikk7007 - Tags: button */
|
|
.button {
|
|
--color: #00A97F;
|
|
padding: 0.8em 1.7em;
|
|
background-color: transparent;
|
|
border-radius: .3em;
|
|
position: relative;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: .5s;
|
|
font-weight: 400;
|
|
font-size: 17px;
|
|
border: 1px solid;
|
|
font-family: inherit;
|
|
text-transform: uppercase;
|
|
color: var(--color);
|
|
z-index: 1;
|
|
}
|
|
|
|
.button::before, .button::after {
|
|
content: '';
|
|
display: block;
|
|
width: 50px;
|
|
height: 50px;
|
|
transform: translate(-50%, -50%);
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
z-index: -1;
|
|
background-color: var(--color);
|
|
transition: 1s ease;
|
|
}
|
|
|
|
.button::before {
|
|
top: -1em;
|
|
left: -1em;
|
|
}
|
|
|
|
.button::after {
|
|
left: calc(100% + 1em);
|
|
top: calc(100% + 1em);
|
|
}
|
|
|
|
.button:hover::before, .button:hover::after {
|
|
height: 410px;
|
|
width: 410px;
|
|
}
|
|
|
|
.button:hover {
|
|
color: rgb(10, 25, 30);
|
|
}
|
|
|
|
.button:active {
|
|
filter: brightness(.8);
|
|
}
|
|
|
|
</style>
|