Compare commits

..

No commits in common. "0e5b8ea85d4fad42f9dc1df606ae105afb050112" and "ee4e6b7ceb3a1a2edfe10644a42ffb08570c2f42" have entirely different histories.

3 changed files with 84 additions and 74 deletions

View file

@ -18,6 +18,7 @@
</tr>
</thead>
<tbody>
{% spaceless %}
{% for y in history.years reversed %}
{% for date in y.d reversed %}
{% ifchanged %}
@ -70,6 +71,7 @@
{% endifchanged %}
{% endfor %}
{% endfor %}
{% endspaceless %}
</tbody>
</table>
</div>
@ -93,6 +95,7 @@
</tr>
</thead>
<tbody>
{% spaceless %}
{% for year in history.years reversed %}
<tr>
<th>{{ year.y }}</th>
@ -113,6 +116,7 @@
{% endfor %}
</tr>
{% endfor %}
{% endspaceless %}
</tbody>
</table>
</div>

View file

@ -9,7 +9,9 @@ form > table > tbody > tr > th {
background: var(--bg-01);
background-clip: padding-box;
}
form tbody :is(input, select, textarea) {
form tbody input,
form tbody select,
form tbody textarea {
font: inherit;
border: none;
background: transparent;

View file

@ -61,7 +61,8 @@ a {
text-decoration: none;
display: inline-block;
}
a:is(:hover, :focus) {
a:hover,
a:focus {
text-decoration: underline;
}
@ -108,7 +109,8 @@ nav ul {
nav .skip-link {
font-weight: 300;
}
nav .skip-link:is(:active, :focus) {
nav .skip-link:active,
nav .skip-link:focus {
font-weight: 500;
}
nav a {
@ -122,7 +124,8 @@ nav a.cur::after {
position: absolute;
right: 0;
}
:is(nav, main) > :first-child {
nav > :first-child,
main > :first-child {
margin-top: 0;
}
footer {
@ -143,7 +146,8 @@ footer {
font-weight: 650;
text-decoration: underline dotted;
}
.pagination a.cur:is(:hover, :focus) {
.pagination a.cur:hover,
.pagination a.cur:focus {
text-decoration: underline;
}