-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.module.css
More file actions
45 lines (37 loc) 路 682 Bytes
/
Copy pathindex.module.css
File metadata and controls
45 lines (37 loc) 路 682 Bytes
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
38
39
40
41
42
43
44
45
.title {
margin-bottom: var(--spacer);
color: var(--text-color-light);
font-size: var(--font-size-h3);
text-decoration: none;
}
.relatedPosts ul {
display: grid;
margin: 0;
gap: calc(var(--spacer) / 2);
grid-template-columns: repeat(2, 1fr);
padding: 0;
}
@media (min-width: 40rem) {
.relatedPosts ul {
gap: var(--spacer);
}
.relatedPosts.photos ul {
grid-template-columns: repeat(3, 1fr);
}
}
.relatedPosts li {
display: block;
margin: 0;
}
.relatedPosts li::before {
display: none;
}
.relatedPosts a {
text-decoration: none;
}
.relatedPosts a > div {
margin-bottom: 0;
}
.relatedPosts a h1 {
font-size: var(--font-size-h5);
}