Appearance
搜索
html
<span class="open-icon-search"></span>
<style>
.open-icon-search{
display: inline-block;
position: relative;
width: 14px;
height: 14px;
border-radius: 7px;
border: 1px var(--vp-c-text-3) solid;
}
.open-icon-search::before{
content:'';
position: absolute;
right: 0px;
bottom: -3px;
transform: rotate(-45deg);
display: inline-block;
width: 1px;
height: 4px;
background: var(--vp-c-text-3);
}
.open-icon-search:hover,.open-icon-search:hover::before{
border-color: var(--vp-c-text-1);
}
</style>