mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
23 lines
600 B
HTML
23 lines
600 B
HTML
<button>
|
|
Click Me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by hakemdamer222 - Tags: simple, purple, button */
|
|
button, button:focus {
|
|
font-size: 17px;
|
|
padding: 10px 25px;
|
|
border-radius: 0.7rem;
|
|
background-image: linear-gradient(rgb(214, 202, 254), rgb(158, 129, 254));
|
|
border: 2px solid rgb(50, 50, 50);
|
|
border-bottom: 5px solid rgb(50, 50, 50);
|
|
box-shadow: 0px 1px 6px 0px rgb(158, 129, 254);
|
|
transform: translate(0, -3px);
|
|
transition: 0.2s;
|
|
transition-timing-function: linear;
|
|
}
|
|
|
|
button:active {
|
|
transform: translate(0, 0);
|
|
border-bottom: 2px solid rgb(50, 50, 50);
|
|
}
|
|
</style>
|