This commit is contained in:
2025-12-07 14:08:14 +07:00
parent 369271a9c3
commit a7308582a0
8 changed files with 326 additions and 0 deletions

37
css/terminal.css Normal file
View File

@@ -0,0 +1,37 @@
@charset "UTF-8";
i.icon.terminal {
position: relative;
width: 24px;
height: 20px;
box-sizing: border-box;
display: block;
border-radius: 2px;
border: 2px solid;
&::after,
&::before {
position: absolute;
content: '';
display: block;
box-sizing: border-box;
}
&::before {
top: 5px;
left: 3px;
width: 6px;
height: 6px;
border-right: 2px solid;
border-bottom: 2px solid;
transform: rotate(-45deg);
}
&::after {
top: 10px;
left: 11px;
width: 4px;
height: 2px;
background-color: currentColor;
}
}