mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
<button class="contactButton"> Contact
|
|
<div class="iconButton">
|
|
<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="M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z"></path></svg>
|
|
</div>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by d4niz - Tags: icon, button, contact */
|
|
.contactButton {
|
|
background: #7079f0;
|
|
color: white;
|
|
font-family: inherit;
|
|
padding: 0.45em;
|
|
padding-left: 1.0em;
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
border-radius: 0.9em;
|
|
border: none;
|
|
letter-spacing: 0.05em;
|
|
display: flex;
|
|
align-items: center;
|
|
box-shadow: inset 0 0 1.6em -0.6em #714da6;
|
|
overflow: hidden;
|
|
position: relative;
|
|
height: 2.8em;
|
|
padding-right: 3em;
|
|
}
|
|
|
|
.iconButton {
|
|
margin-left: 1em;
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 2.2em;
|
|
width: 2.2em;
|
|
border-radius: 0.7em;
|
|
box-shadow: 0.1em 0.1em 0.6em 0.2em #7a8cf3;
|
|
right: 0.3em;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.contactButton:hover {
|
|
transform: translate(-0.05em, -0.05em);
|
|
box-shadow: 0.15em 0.15em #5566c2;
|
|
}
|
|
|
|
.contactButton:active {
|
|
transform: translate(0.05em, 0.05em);
|
|
box-shadow: 0.05em 0.05em #5566c2;
|
|
}
|
|
</style>
|