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

39
css/site.css Normal file
View File

@@ -0,0 +1,39 @@
@charset "UTF-8";
i.icon.site {
position: relative;
width: 22px;
height: 18px;
box-sizing: border-box;
display: block;
border-radius: 3px;
border: 2px solid;
box-shadow: 0 -1px 0;
&::after,
&::before {
top: 2px;
position: absolute;
content: "";
width: 6px;
box-sizing: border-box;
display: block;
}
&::before {
left: 2px;
height: 2px;
border-radius: 3px;
background-color: currentColor;
box-shadow:
0 4px 0,
0 8px 0;
}
&::after {
right: 2px;
height: 10px;
border-radius: 1px;
border: 2px solid;
}
}