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

30
css/layout_grid.css Normal file
View File

@@ -0,0 +1,30 @@
@charset "UTF-8";
i.icon.layout.grid,
i.icon.layout.grid::after,
i.icon.layout.grid::before {
position: relative;
width: 10px;
height: 10px;
box-sizing: border-box;
display: block;
}
i.icon.layout.grid {
&::after,
&::before {
position: absolute;
content: "";
height: 4px;
border-left: 4px solid;
border-right: 4px solid;
}
&::before {
top: 0;
}
&::after {
bottom: 0;
}
}