Appearance
复制
html
<span class="open-copy"></span>
<style>
.open-icon-copy{
display: inline-block;
position: relative;
width: 13px;
height: 13px;
border: 1px var(--vp-c-text-3) solid;
border-radius: 2px;
}
.open-icon-copy::before{
content: '';
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 13px;
height: 13px;
border: 1px var(--vp-c-text-3) solid;
border-radius: 2px;
transform: translate(1px,-3px);
}
.open-icon-copy:hover,.open-icon-copy:hover::before{
border-color: var(--vp-c-text-1);
}
</style>