mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
21 lines
421 B
HTML
21 lines
421 B
HTML
<button>
|
|
All products
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by felipesntr - Tags: button */
|
|
button {
|
|
font-size: 1rem;
|
|
padding: 0.8em 2em;
|
|
background-color: #000;
|
|
border: 3px solid yellow;
|
|
border-radius: 1em;
|
|
color: #fff;
|
|
font-weight: bolder;
|
|
transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
|
|
box-shadow: -5px 5px 0px 0px yellow;
|
|
}
|
|
|
|
button:hover {
|
|
transform: translate(5px, -5px);
|
|
}
|
|
</style>
|