Add projects, CV, remove notes

This commit is contained in:
2022-04-06 13:54:44 +03:00
parent 88ecac076a
commit 21e4063af2
17 changed files with 606 additions and 247 deletions

View File

@@ -9,3 +9,30 @@ body {
font-family: 'Vollkorn', serif;
width: 100%;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
width: 100%;
max-width: 100vw;
}
@media (max-width: 768px) {
main {
padding: 0;
}
}
section {
display: flex;
flex-direction: column;
align-items: center;
width: calc(100% - 1rem * 2);
padding: 2rem 1rem;
}
section:not(:first-of-type) {
border-top: 1px solid rgba(0, 0, 0, 0.05);
}