feat(directory): finish home page

This commit is contained in:
Haoyu Xu
2023-02-26 01:06:10 -05:00
parent b5f84c9380
commit 81ee2d2170
24 changed files with 652 additions and 214 deletions

View File

@@ -0,0 +1,23 @@
.main-border {
position: relative;
bottom: 1px;
border-bottom: 1px solid var(--text-color);
}
.main-border::before, .main-border::after {
content: "";
display: block;
position: absolute;
width: 5px;
height: 5px;
top: -2px;
background-color: var(--text-color);
}
.main-border::before {
right: 100%;
}
.main-border::after {
left: 100%;
}