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/enter.css Normal file
View File

@@ -0,0 +1,39 @@
@charset "UTF-8";
i.icon.enter {
position: relative;
width: 16px;
height: 18px;
box-sizing: border-box;
display: block;
border: 2px solid;
border-left: 0;
box-shadow:
-8px -6px 0 -6px,
-8px 6px 0 -6px;
}
i.icon.enter::after,
i.icon.enter::before {
content: "";
position: absolute;
right: 4px;
display: block;
box-sizing: border-box;
}
i.icon.enter::before {
top: 6px;
width: 16px;
height: 2px;
background: currentColor;
}
i.icon.enter::after {
top: 4px;
width: 6px;
height: 6px;
border-right: 2px solid;
border-top: 2px solid;
transform: rotate(45deg);
}