mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
39 lines
771 B
HTML
39 lines
771 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by hannahyockel - Tags: button */
|
|
button {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 15px 38px;
|
|
border-radius: 16px;
|
|
border: 1px solid transparent;
|
|
color: #FFFFFF;
|
|
background-color: #1DC9A0;
|
|
font-size: 16px;
|
|
letter-spacing: 1px;
|
|
transition: all 0.15s linear;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: rgba(29, 201, 160, 0.08);
|
|
border-color: #1DC9A0;
|
|
color: #1DC9A0;
|
|
transform: translateY(-5px) scale(1.05);
|
|
}
|
|
|
|
button:active {
|
|
background-color: transparent;
|
|
border-color: #1DC9A0;
|
|
color: #1DC9A0;
|
|
transform: translateY(5px) scale(0.95);
|
|
}
|
|
|
|
button:disabled {
|
|
background-color: rgba(255, 255, 255, 0.16);
|
|
color: #8E8E93;
|
|
border-color: #8E8E93;
|
|
}
|
|
</style>
|