mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<button> Click me !
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by ercnersoy - Tags: button */
|
|
button {
|
|
padding: 1em 1.6em;
|
|
border: 0;
|
|
transition: all .5s ease-in-out;
|
|
font-size: 17px;
|
|
letter-spacing: 0.1rem;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
color: rgb(0, 0, 0);
|
|
font-weight: bolder;
|
|
backdrop-filter: blur(5px);
|
|
background-color: rgba(255, 255, 255, 1);
|
|
border-radius: 26px;
|
|
box-shadow: 0px 0px 0px 0px rgba(145, 192, 255, 0.5),
|
|
inset -8px -8px 16px 0px rgba(145, 193, 255, 0.973),
|
|
inset 0px 11px 28px 0px rgb(255, 255, 255);
|
|
}
|
|
|
|
button:hover {
|
|
transition: all .5s ease-in-out;
|
|
backdrop-filter: blur(5px);
|
|
background-color: rgba(255, 255, 255, 1);
|
|
border-radius: 26px;
|
|
box-shadow: 0px 0px 0px 0px rgba(145, 192, 255, 0.5),
|
|
inset 8px -8px 16px 10px rgb(145, 193, 255),
|
|
inset 0px 11px 28px 0px rgb(255, 255, 255);
|
|
}
|
|
|
|
button:active {
|
|
border-radius: 26px;
|
|
box-shadow: 0px 0px 0px 0px rgba(145, 193, 255, 0.822),
|
|
inset -8px -8px 16px 10px #91c0ff99,
|
|
inset 0px 11px 28px 50px rgb(255, 255, 255);
|
|
}
|
|
</style>
|