mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
30 lines
No EOL
605 B
HTML
30 lines
No EOL
605 B
HTML
<button class="send-button">Send Message</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by tranmanhduy0810 - Tags: simple, button, code */
|
|
.send-button {
|
|
background-color: #ffffff;
|
|
border: 1px solid #dcdcdc;
|
|
border-radius: 8px;
|
|
padding: 10px 20px;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: #000000;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.send-button:hover {
|
|
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.send-button img {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
</style>
|
|
|