diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-07-11 19:51:53 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-07-11 19:51:53 +0200 |
commit | 63c08b64e2de78fa706e8340c0a37409d6941ced (patch) | |
tree | 932027813cfedf9cc21c783062341d173183cf8a /src | |
parent | 382291fb3ab655206a9c1a4a8c175d0492b66750 (diff) |
+ Today’s finds
Diffstat (limited to 'src')
-rw-r--r-- | src/style.css | 28 | ||||
-rw-r--r-- | src/table-key.gsp | 14 |
2 files changed, 30 insertions, 12 deletions
diff --git a/src/style.css b/src/style.css index 6d00b54..eab5295 100644 --- a/src/style.css +++ b/src/style.css @@ -455,22 +455,28 @@ main section { text-align: right; } -.nifc { background-color: pink; } -.have { background-color: green; } -.have-nifc { background-color: #5DBB63; } -.not-minted { background-color: black; } -.unknown { background-color: grey; } -.error { background-color: red; } +.nifc { background-color: pink; } +.have { background-color: green; } +.have-nifc { background-color: #5DBB63; } +.not-minted { background-color: black; } +.unknown { background-color: grey; } +.error { background-color: red; } +.getting { background-color: yellow; } +.getting-nifc { background-color: khaki; } .have-proof { background-color: #5DBB63; position: relative; } +.getting-proof { + background-color: khaki; + position: relative; +} -.have-proof:before { animation: slide 2s linear 1s infinite; } -.have-proof:after { animation: slide 2s linear 0s infinite; } +:is(.have-proof, .getting-proof):before { animation: slide 2s linear 1s infinite; } +:is(.have-proof, .getting-proof):after { animation: slide 2s linear 0s infinite; } -.have-proof:before, -.have-proof:after { +:is(.have-proof, .getting-proof):before, +:is(.have-proof, .getting-proof):after { content: ''; top: 0; left: 0; @@ -875,4 +881,4 @@ div .country-table:not(:first-child) { .blurb { flex-direction: column; align-items: center; -} +}
\ No newline at end of file diff --git a/src/table-key.gsp b/src/table-key.gsp index ba551a8..db726b1 100644 --- a/src/table-key.gsp +++ b/src/table-key.gsp @@ -16,6 +16,18 @@ table #table-key cellspacing="0" { td {-In my collection (proof)} } tr { + td {div .getting {}} + td {-Getting for my collection} + } + tr { + td {div .getting-nifc {}} + td {-Getting for my collection (NIFC)} + } + tr { + td {div .getting-proof {}} + td {-Getting for my collection (proof)} + } + tr { td {div .unknown {}} td {-Circulation status unknown} } @@ -23,4 +35,4 @@ table #table-key cellspacing="0" { m4_dnl td {div .not-minted {}} m4_dnl td {-m4_ifdef([__coins], [Not minted], [Not printed])} m4_dnl } -} +}
\ No newline at end of file |