mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
33 lines
536 B
HTML
33 lines
536 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by aasisodiya - Tags: button */
|
|
button {
|
|
background-color: #eee;
|
|
border: none;
|
|
padding: 1rem;
|
|
font-size: 1rem;
|
|
width: 10em;
|
|
border-radius: 1rem;
|
|
color: lightcoral;
|
|
box-shadow: 0 0.4rem #dfd9d9;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:active {
|
|
color: white;
|
|
box-shadow: 0 0.2rem #dfd9d9;
|
|
transform: translateY(0.2rem);
|
|
}
|
|
|
|
button:hover:not(:disabled) {
|
|
background: lightcoral;
|
|
color: white;
|
|
text-shadow: 0 0.1rem #bcb4b4;
|
|
}
|
|
|
|
button:disabled {
|
|
cursor: auto;
|
|
color: grey;
|
|
}
|
|
</style>
|