mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
58 lines
No EOL
1.5 KiB
HTML
58 lines
No EOL
1.5 KiB
HTML
<button class="send-button">
|
|
<div class="send">
|
|
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z"
|
|
></path>
|
|
</svg>
|
|
Send Message
|
|
</div>
|
|
</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Bodyhc - Tags: button, simple button, hover button, #button, tailwindbutton, 3d button, button hover effect , 2d button */
|
|
.send-button {
|
|
display: flex;
|
|
height: 60px;
|
|
width: 180px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 2px solid #b7b7b7;
|
|
padding: 2px;
|
|
border-radius: 12px;
|
|
background-color: #fff;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.6);
|
|
font-family: "Arial", sans-serif;
|
|
font-size: 16px;
|
|
color: #000;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.send {
|
|
display: flex;
|
|
width: 180px;
|
|
height: 100%;
|
|
border-radius: 50px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
box-shadow: inset -3px 1px 10px #eff1ef, inset -3px 1px 10px #eff1ef;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.send-button svg {
|
|
margin-right: 10px;
|
|
width: 15px;
|
|
height: 15px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.send-button:hover svg {
|
|
transform: rotate(50deg);
|
|
}
|
|
|
|
</style>
|
|
|