galaxy/Buttons/Amikas_polite-seahorse-89.html

28 lines
571 B
HTML

<button class="button">
Click me
</button>
<style>
/* From Uiverse.io by Amikas - Tags: button */
.button {
background-color: #333;
color: #fff;
padding: 12px 24px;
border: none;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
cursor: pointer;
transition: all 0.3s ease-in-out;
font-size: 17px;
}
.button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
background-color: rgb(128, 95, 247);
}
.button:active {
transform: translateY(0.5em);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
</style>