mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
22 lines
423 B
HTML
22 lines
423 B
HTML
<button class="button">
|
|
Duolingo Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by suda-code - Tags: green, button, duolingo */
|
|
button {
|
|
align-items: center;
|
|
color: #ffffff;
|
|
font-size: 18px;
|
|
background: #58cc02;
|
|
border: none !important;
|
|
padding: 15px 16px;
|
|
box-shadow: 0 4px 0 #58a700;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:active {
|
|
box-shadow: none;
|
|
transform: translate(0, 4px);
|
|
}
|
|
</style>
|