added icons and moved to the css directory

This commit is contained in:
2025-11-23 17:35:49 +07:00
parent bd33bfae6b
commit cae2ed1a6c
29 changed files with 115 additions and 0 deletions

37
css/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);
}