blob: 9a7f5f4064ea735e586f4213f42d0eff6a506399 (
plain)
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
|
h2 {
margin-bottom: 4px;
}
div {
display: grid;
grid-template-columns: max-content 1fr;
column-gap: 1rem;
}
time {
display: inline-block;
text-align: right;
color: var(--text-dim);
}
a {
color: var(--text);
text-decoration: underline dashed var(--color-a);
}
img {
width: 100%;
}
ul {
list-style-type: square;
list-style-position: inside;
padding-left: 0;
}
|