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

30
public/styles/posts.css Normal file
View File

@@ -0,0 +1,30 @@
.posts {
/* list-style: none; */
margin-top: 0;
padding-left: 0;
}
.posts li {
display: grid;
grid-template-columns: 1fr 2fr;
column-gap: 0.5rem;
}
.posts .date {
text-align: right;
}
@media (max-width: 768px) {
.posts {
padding-left: 2rem;
padding-right: 1rem;
}
.posts .date {
display: none;
}
.posts li {
display: list-item;
}
}