37 lines
534 B
CSS
37 lines
534 B
CSS
|
|
.feed .post {
|
||
|
|
margin: 30px 0;
|
||
|
|
background: var(--background-2);
|
||
|
|
padding: 15px;
|
||
|
|
border: 1px solid var(--background-3);
|
||
|
|
}
|
||
|
|
|
||
|
|
.feed .post .tag, .feed .secondary {
|
||
|
|
color: var(--color-2);
|
||
|
|
font-style: italic;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feed .secondary {
|
||
|
|
font-size: 0.8em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feed .post h2::before {
|
||
|
|
content: '';
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feed .post h2 {
|
||
|
|
margin-top: 15px;
|
||
|
|
font-size: 1.3em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feed .post .footer {
|
||
|
|
margin-top: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feed .post .footer .sep {
|
||
|
|
margin: 0 7px;
|
||
|
|
}
|
||
|
|
|