blob: c0fd08061bfcae17b964f1921aa605b3e783dbbf (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
.intro-text {
text-align: center;
max-width: 600px;
margin: 0 auto 60px auto;
}
.blog-section {
margin-bottom: 60px;
}
.search-form {
position: absolute;
top: 20px;
right: 20px;
}
.search-form input {
font-family: var(--font-serif), serif;
padding: 6px 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
background: transparent;
color: var(--text-color);
width: 180px;
font-size: 0.8rem;
}
.search-form button {
font-family: var(--font-serif), serif;
padding: 6px 12px;
background: #e8e8e4;
color: var(--text-color);
border: 1px solid var(--border-color);
border-radius: 4px;
cursor: pointer;
font-weight: bold;
font-size: 0.8rem;
}
.search-form button:hover {
background: #ddd;
}
@media (max-width: 850px) {
.search-form {
position: static;
text-align: center;
margin-bottom: 40px;
}
.search-form input {
width: 250px;
}
}
.year-accordion {
margin-bottom: 1.5rem;
cursor: pointer;
}
.year-toggle {
font-size: 1.25rem;
font-weight: bold;
list-style: none;
margin-bottom: 0.5rem;
}
.year-toggle::-webkit-details-marker {
display: none;
}
.year-toggle:hover {
opacity: 0.7;
}
.post-list {
margin-top: 10px;
padding-left: 20px;
border-left: 2px solid var(--border-color);
}
.post-list li {
margin-bottom: 0.65rem;
}
.post-list a {
font-size: 0.9rem;
font-weight: normal;
}
.featured-desc {
font-weight: normal;
color: var(--text-color);
opacity: 0.85;
}
|