mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
28 lines
579 B
HTML
28 lines
579 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by absoluteSTrange - Tags: button */
|
|
button {
|
|
padding: 17px 40px;
|
|
border-radius: 10px;
|
|
border: 0;
|
|
background-color: rgb(255, 56, 86);
|
|
letter-spacing: 1.5px;
|
|
font-size: 15px;
|
|
transition: all .3s ease;
|
|
box-shadow: rgb(201, 46, 70) 0px 10px 0px 0px;
|
|
color: hsl(0, 0%, 100%);
|
|
}
|
|
|
|
button:hover {
|
|
box-shadow: rgb(201, 46, 70) 0px 7px 0px 0px;
|
|
}
|
|
|
|
button:active {
|
|
background-color: rgb(255, 56, 86);
|
|
/*50, 168, 80*/
|
|
box-shadow: rgb(201, 46, 70) 0px 0px 0px 0px;
|
|
transform: translateY(5px);
|
|
transition: 200ms;
|
|
}
|
|
</style>
|