mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
28 lines
541 B
HTML
28 lines
541 B
HTML
<button>
|
|
Hover Me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by sekaiking - Tags: button */
|
|
button {
|
|
background-color: white;
|
|
color: black;
|
|
border-radius: 10em;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
padding: 1em 2em;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease-in-out;
|
|
border: 1px solid black;
|
|
box-shadow: 0 0 0 0 black;
|
|
}
|
|
|
|
button:hover {
|
|
transform: translateY(-4px) translateX(-2px);
|
|
box-shadow: 2px 5px 0 0 black;
|
|
};
|
|
|
|
button:active {
|
|
transform: translateY(2px) translateX(1px);
|
|
box-shadow: 0 0 0 0 black;
|
|
};
|
|
</style>
|