mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
20 lines
380 B
HTML
20 lines
380 B
HTML
<button> # NICE BUTTON
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by felipesntr - Tags: button */
|
|
button {
|
|
padding: 0.6em 1em;
|
|
border: 4px solid #fa725a;
|
|
transition: ease-in-out 0.3s;
|
|
background-color: transparent;
|
|
color: #fa725a;
|
|
font-weight: bolder;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button:hover {
|
|
transform: scale(1.2) rotate(10deg);
|
|
background-color: #fa725a;
|
|
color: white;
|
|
}
|
|
</style>
|