Skip to content

archive.org - file list readability tweaks by MateusAuri

Screenshot of archive.org - file list readability tweaks

Details

AuthorMateusAuri

LicenseNo License

Categoryarchive.org

Created

Updated

Size790 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

A few simple tweaks to improve readability on archive.org file download lists.

Notes

Features:

  • Full width table container, so now you'll only need to scroll horizontally when there's a long filename in the list;
  • Added left padding to filename, to make selecting text with a mouse easier;
  • Aligned filesizes to the right, for a better visual notion of numerical magnitude and comparison between lines;
  • Alternate row colors, for better line tracking when reading info.

This is my first userstyle ever made/published, please don't mind if there's any wonkiness.

Source code

/* ==UserStyle==
@name         archive.org - file download list readability tweaks
@version      20231015.02.43
@description  A few simple tweaks to improve readability on archive.org file download lists.
@author       MateusAuri
@namespace    ?
==/UserStyle== */

@-moz-document url-prefix("https://archive.org/download/") {
	/* full width */
	.container {
		margin-left: 0px;
		margin-right: 0px;
		max-width: 100%;
	}
	/* add padding to facilitate text selection */
	table td:nth-child(1) {
		padding-left: 25px;
	}
	/* align filesizes to the right */
	table td:nth-child(3) {
		text-align: end;
	}
	/* alternate row colors for readability */
	table tr:nth-child(even) {
		background-color: #ded;
	}
	table tr:nth-child(odd) {
		background-color: #fff;
	}
}

Reviews

No reviews yet.