summaryrefslogtreecommitdiff
path: root/posts.css
blob: 169a18da1d35d1adaaaccb078a8bb0c0c821c0b2 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
#tag_list {
  width: 65%;
  display: grid;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8px;
  row-gap: 8px
}

@media (max-width: 767.98px) {
  #tag_list {
    width: 100%;
  }
}

#tag_list  button {
  padding: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  height: 100%;
}

#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;
}