mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
28 lines
571 B
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>
|