Added about page

This commit is contained in:
2025-01-23 19:39:45 +01:00
parent 89e9b043e5
commit dfbf5be8cc
7 changed files with 223 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
#about {
display: grid;
gap: 20px;
grid-template-columns: repeat(2, 1fr);
}
.title {
margin-block: 5rem 2rem;
}
.timeline ::deep .timestamp:last-of-type {
--show-bar: none;
}
.timeline {
display: flex;
margin-top: 30px;
}
@media screen and (max-width: 1200px) {
#about {
grid-template-columns: unset;
grid-template-rows: repeat(2, max-content);
}
.timeline {
flex-direction: column-reverse;
}
.timeline ::deep .timestamp:last-of-type {
--show-bar: block;
}
.timeline ::deep .timestamp:first-of-type {
--show-bar: none;
}
}