The New Beginnings

This commit is contained in:
2020-08-28 16:17:27 +03:00
parent e253970e14
commit 3714f85d86
81 changed files with 5643 additions and 9112 deletions

43
public/styles/index.css Normal file
View File

@@ -0,0 +1,43 @@
@import './common.css';
main {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem 0;
}
.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) {
main {
padding: 0;
}
.posts {
padding-left: 2rem;
padding-right: 1rem;
}
.posts .date {
display: none;
}
.posts li {
display: list-item;
}
}