moved from kodorvan/understyle

This commit is contained in:
2025-11-23 17:20:17 +07:00
commit 603ef15147
28 changed files with 1072 additions and 0 deletions

37
share.css Normal file
View File

@@ -0,0 +1,37 @@
@charset "UTF-8";
i.icon.share {
position: relative;
width: 6px;
height: 6px;
display: block;
box-sizing: border-box;
border-radius: 100px;
background-color: currentColor;
box-shadow:
10px -6px 0,
10px 6px 0;
}
i.icon.share::after,
i.icon.share::before {
content: "";
position: absolute;
left: 2px;
width: 10px;
height: 2px;
display: block;
box-sizing: border-box;
border-radius: 3px;
background-color: currentColor;
}
i.icon.share::before {
top: 0;
transform: rotate(-35deg);
}
i.icon.share::after {
bottom: 0;
transform: rotate(35deg);
}