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

45
css/pen.css Normal file
View File

@@ -0,0 +1,45 @@
@charset "UTF-8";
i.icon.pen {
position: relative;
margin-right: -2px;
width: 14px;
height: 4px;
box-sizing: border-box;
display: block;
border-top-right-radius: 1px;
border-bottom-right-radius: 1px;
border-right: 2px solid transparent;
box-shadow:
0 0 0 2px,
inset -2px 0 0;
transform: rotate(-45deg);
&:after,
&:before {
position: absolute;
content: "";
display: block;
box-sizing: border-box;
}
&:before {
top: 0;
right: -6px;
width: 3px;
height: 4px;
border-radius: 1px;
border-left: 0;
background: currentColor;
}
&:after {
top: -2px;
left: -11px;
width: 8px;
height: 7px;
border-top: 4px solid transparent;
border-right: 7px solid;
border-bottom: 4px solid transparent;
}
}