mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
22 lines
443 B
HTML
22 lines
443 B
HTML
<button>
|
|
Hover me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Dear31 - Tags: button */
|
|
button {
|
|
background-color: rgb(255, 255, 255);
|
|
border: 3px solid black;
|
|
padding: 12px 32px;
|
|
border-radius: 22px;
|
|
box-shadow: 2px 2px 1px black;
|
|
transition: all .2s ease;
|
|
font-size: 1em;
|
|
font-weight: 800;
|
|
}
|
|
|
|
button:hover {
|
|
transform: translate(-2px, -1px);
|
|
box-shadow: 7px 7px 1px rgb(0, 0, 0);
|
|
transition: all .2s ease-in;
|
|
}
|
|
</style>
|