mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
546 B
HTML
27 lines
546 B
HTML
<button class="click">Click me</button>
|
|
<style>
|
|
/* From Uiverse.io by JkHuger - Tags: button */
|
|
.click {
|
|
margin: 2rem auto;
|
|
display: flex;
|
|
background-color: #7A5FFF;
|
|
color: white;
|
|
cursor: pointer;
|
|
border: none;
|
|
font-size: 1.2rem;
|
|
padding: 10px 15px;
|
|
border-radius: .25rem
|
|
}
|
|
|
|
.click {
|
|
transition: background .8s ease-out;
|
|
background: #7A5FFF radial-gradient(circle, transparent 1%, #7A5FFF 1%) center/15000%;
|
|
}
|
|
|
|
.click:active {
|
|
background-color: #c1b4ff;
|
|
background-size: 100%;
|
|
transition: background 0s;
|
|
}
|
|
|
|
</style>
|