Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | @import "../styles/colors";
.post {
@media screen and (max-width: 990px) {
padding: 5px 25px;
}
border-radius: 2px;
}
.content {
padding: 0;
margin-right: auto;
color: $content-black;
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@media screen and (min-width: 990px) {
margin-left: 1.5rem;
}
}
.article-meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
padding: 0 30px;
margin-bottom: 16px;
@media screen and (max-width: 576px) {
flex-direction: column;
align-items: stretch;
}
}
|