mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
424 B
HTML
23 lines
424 B
HTML
<button>
|
|
Click me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by krlozCJ - Tags: button */
|
|
button {
|
|
border: none;
|
|
outline: none;
|
|
background-color: #6c5ce7;
|
|
padding: 10px 20px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
transition: all ease 0.1s;
|
|
box-shadow: 0px 5px 0px 0px #a29bfe;
|
|
}
|
|
|
|
button:active {
|
|
transform: translateY(5px);
|
|
box-shadow: 0px 0px 0px 0px #a29bfe;
|
|
}
|
|
</style>
|