mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
414 B
HTML
23 lines
414 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by AhSiber - Tags: simple, minimalist, button */
|
|
button {
|
|
border: 1px solid seagreen;
|
|
border-radius: 5px;
|
|
background: rgb(255, 255, 255);
|
|
color: seagreen;
|
|
font-style: italic;
|
|
padding: 10px;
|
|
padding-right: 14px;
|
|
padding-left: 12px;
|
|
font-size: 17px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: seagreen;
|
|
color: white;
|
|
border: 1px solid seagreen;
|
|
}
|
|
|
|
</style>
|