summaryrefslogtreecommitdiff
path: root/posts.css
blob: 58204c30ad03446f3964fdc35007e58cb3f3e06d (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
31
32
33
34
35
36
37
38
#tag_list {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 4px;
}

#tag_list > button {
  padding: 8px;
  cursor: pointer;
}

#post_list {
  display: flex;
  flex-direction: column;
}

article {
  width: 100%;
  text-align: left;
  padding-top: 1rem;
}

article > h2 {
  color: black;
  padding: 0;
  margin: 0;
}

article > h3 {
  margin: 0;
  margin-top: 12px;
  color: gray;
  font-size: 12px;
  font-weight: normal;
  padding: 0;
}