mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
29 lines
537 B
HTML
29 lines
537 B
HTML
<button>
|
|
Click
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by ErzenXz - Tags: button */
|
|
button {
|
|
width: fit-content;
|
|
min-width: 100px;
|
|
height: 45px;
|
|
padding: 8px;
|
|
border-radius: 5px;
|
|
border: 2.5px solid #E0E1E4;
|
|
box-shadow: 0px 0px 20px -20px;
|
|
cursor: pointer;
|
|
background-color: white;
|
|
transition: all 0.2s ease-in-out 0ms;
|
|
user-select: none;
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #F2F2F2;
|
|
box-shadow: 0px 0px 20px -18px;
|
|
}
|
|
|
|
button:active {
|
|
transform: scale(0.95);
|
|
}
|
|
</style>
|