blob: 3ff76486c3abac21a0c53e1e735b2491351b6263 (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
.intro-text {
text-align: center;
max-width: 40ch;
margin: 0 auto 1.8rem auto;
}
.articles-section {
margin-bottom: 3.8rem;
}
.search-form {
text-align: center;
margin-bottom: 2.4rem;
}
.search-form input {
font-family: var(--font-serif), serif;
padding: 0.4rem 0.6rem;
border: 1px solid var(--border-color);
border-radius: 4px;
background: transparent;
color: var(--text-color);
width: 11.2rem;
font-size: 0.8rem;
}
.search-form button {
margin-left: 0.2rem;
}
.year-accordion {
margin-bottom: 1.5rem;
cursor: pointer;
}
.year-toggle {
font-size: 1.25rem;
font-weight: bold;
list-style: none;
margin-bottom: 0.5rem;
transition: color 0.2s ease;
}
.year-toggle::-webkit-details-marker {
display: none;
}
.year-toggle:hover {
color: var(--accent-color)
}
.article-list {
margin-top: 0.625rem;
padding-left: 2.2rem !important;
border-left: 2px solid var(--border-color);
}
.article-list-item,
.search-result-item {
margin-bottom: 0.8rem;
font-size: 1rem;
line-height: 1.6;
}
.article-list a,
.search-result-item a {
font-size: 1rem;
font-weight: normal;
}
.article-date {
display: inline-block;
font-size: 0.9rem;
color: var(--text-color);
opacity: 0.65;
margin-right: 0.9rem;
min-width: 6.8rem;
}
.featured-desc {
font-weight: normal;
color: var(--text-color);
opacity: 0.85;
}
.search-results-container {
max-width: 100%;
margin: 1.8rem 0 0 0;
}
.search-results-list {
list-style-type: none;
margin: 0;
padding: 0 0 0 2.2rem !important;
border-left: 2px solid var(--border-color);
}
.search-result-item a {
font-size: 1rem;
}
.search-result-summary {
font-weight: normal;
color: var(--text-color);
opacity: 0.85;
}
.no-results {
padding: 1.2rem;
background: #e8e8e4;
border-radius: 4px;
text-align: center;
font-style: italic;
}
.back-to-articles {
margin-top: 2.4rem;
display: inline-block;
}
@media (max-width: 768px) {
.search-form input {
width: 250px;
}
}
|