mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
32 lines
584 B
HTML
32 lines
584 B
HTML
<button>
|
|
Click me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by satyamchaudharydev - Tags: 3d, button */
|
|
button {
|
|
--bg: #e74c3c;
|
|
--text-color: #fff;
|
|
position: relative;
|
|
width: 150px;
|
|
border: none;
|
|
background: var(--bg);
|
|
color: var(--text-color);
|
|
padding: 1em;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
transition: 0.2s;
|
|
border-radius: 5px;
|
|
opacity: 0.8;
|
|
letter-spacing: 1px;
|
|
box-shadow: #c0392b 0px 7px 2px, #000 0px 8px 5px;
|
|
}
|
|
|
|
button:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
button:active {
|
|
top: 4px;
|
|
box-shadow: #c0392b 0px 3px 2px,#000 0px 3px 5px;
|
|
}
|
|
</style>
|