Add file download information window + SHA-256 + more checksums

I'm not the biggest fan of how the info window works, but it works
anyway, and it's easy to apply to *all* the download links.

Also decided to sign & checksum static binaries. Those are just as
important (if not more so) than the source tarballs.

Yes, I did verify that my copies of all the files were still in line
with the other checksums before creating the SHA256 checksums. :)

And I think I'm done fiddling with the site now; This is the last of my
planned changes. ...except that the site kinda sucks in text-mode
browsers now. Hmm. But how do I improve that?
This commit is contained in:
Yorhel 2019-03-26 18:56:46 +01:00
parent 7367b44edc
commit de0227cdbd
94 changed files with 216 additions and 5 deletions

View file

@ -70,6 +70,16 @@ main .sig, main .sig a { font-size: 9px; color: #333; text-decoration: none }
.page-changelog > ul > li { margin-bottom: 1.3em }
.page-changelog li li { margin-left: 1em }
.fileinfo { position: relative }
.fileinfo input { display: none }
.fileinfo label { cursor: pointer }
.fileinfo label img { height: 12px }
.fileinfo span label { position: absolute; right: 0; top: 0; padding: 5px }
.fileinfo span { position: absolute; top: 25px; left: -80px; background: #eee; border: 1px dashed #000; padding: 15px; display: none; white-space: nowrap; z-index: 1 }
.fileinfo span, .fileinfo span * { font-size: 12px }
.fileinfo span em { display: inline-block; width: 70px; font-style: normal }
.fileinfo input:checked ~ span { display: block }
code span.al { color: #ff0000; font-weight: bold; } /* Alert */
code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
code span.at { color: #7d9029; } /* Attribute */