galaxy/Buttons/sekaiking_tidy-starfish-71.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>