mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<button class="Btn">
|
|
<span class="text">Copy</span>
|
|
<span class="svgIcon">
|
|
<svg fill="white" viewBox="0 0 384 512" height="1em" xmlns="http://www.w3.org/2000/svg"><path d="M280 64h40c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64h40 9.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64H280zM64 112c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H304v24c0 13.3-10.7 24-24 24H192 104c-13.3 0-24-10.7-24-24V112H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"></path></svg>
|
|
</span>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by vinodjangid07 - Tags: button, copy, hover effect */
|
|
.Btn {
|
|
width: 100px;
|
|
height: 35px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
border: none;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.164);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.text {
|
|
width: 65%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
background-color: rgb(2, 153, 153);
|
|
}
|
|
|
|
.svgIcon {
|
|
width: 35%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
background-color: teal;
|
|
}
|
|
|
|
.Btn:hover .text {
|
|
background-color: rgb(0, 133, 133);
|
|
}
|
|
|
|
.Btn:hover .svgIcon {
|
|
background-color: rgb(0, 105, 105);
|
|
}
|
|
</style>
|