summaryrefslogtreecommitdiff
path: root/assets/css/pages/changelog.css
blob: 78b2ff4242a7125ee11e0e46f8ae45d8054f9b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.changelog-list{ list-style: none; padding: 0; margin: 0; }

.changelog-entry{
  display: grid;
  grid-template-columns: 12ch 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px dotted rgba(0,0,0,.25);
}

.changelog-entry:last-child{ border-bottom: none; }

.changelog-entry time{ font-weight: 700; color: var(--ink); white-space: nowrap; }

.changelog-entry .text{ color: var(--muted); }

@media (max-width: 560px){
  .changelog-entry{ grid-template-columns: 1fr; }
}