blob: f07381c79aeec7f35ebbb9029b9c7861abd7cfbb (
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
52
53
54
55
56
57
58
|
#tag_list {
width: 65%;
display: grid;
margin: auto;
grid-template-columns: repeat(3, 1fr);
column-gap: 8px;
row-gap: 16px
}
@media (max-width: 767.98px) {
#tag_list {
width: 100%;
}
}
#tag_list button {
padding: 12px 0px;
cursor: pointer;
border: 1px solid transparent;
border-radius: 3px;
font-family: inherit;
font-size: 14px;
width: 100%;
height: 100%;
color: black;
background-color: transparent;
border: 2px solid black;
}
#tag_list button:hover {
background-color: lightgray;
}
#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;
}
|