mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
387 B
HTML
20 lines
387 B
HTML
<button> MacOS Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: button, macOS */
|
|
button {
|
|
width: 150px;
|
|
padding: 4px 12px;
|
|
border: none;
|
|
border-radius: 7px;
|
|
background: linear-gradient(#4faefc,#006bff);
|
|
color: #fff;
|
|
font-size: 17px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
button:focus {
|
|
background: linear-gradient(#44aefc,#026bff);
|
|
outline: 3px solid #4faefc;
|
|
}
|
|
</style>
|