mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
28 lines
663 B
HTML
28 lines
663 B
HTML
<button>
|
|
<span>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"></path><path fill="currentColor" d="M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2z"></path></svg> Create
|
|
</span>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by felipesntr - Tags: icon, button */
|
|
button {
|
|
border: 2px solid #24b4fb;
|
|
background-color: #24b4fb;
|
|
border-radius: 0.9em;
|
|
padding: 0.8em 1.2em 0.8em 1em;
|
|
transition: all ease-in-out 0.2s;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button span {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0071e2;
|
|
}
|
|
</style>
|