From 0847c4f2eb78c6c31f63e0862a1385b20a659e6c Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 28 Aug 2024 22:08:34 +0200 Subject: Restyled posts index --- index.html | 144 +++++++++++++++++++++---------------------------------------- style.css | 36 +++++++++------- 2 files changed, 71 insertions(+), 109 deletions(-) diff --git a/index.html b/index.html index ef54b4a..c6f8576 100644 --- a/index.html +++ b/index.html @@ -18,98 +18,54 @@

posts

- + +
2024 +
28 AugustLua as Human-Readable Serialization Format +
23 JuneWhere to Learn C++ +
22 JuneAurora in Mielno, May 2024 +
15 JuneSequential Bias +
12 MayI Made More Alcohol in 2023 +
5 MayRespect +
11 FebruaryGenerate Your Daily Commits Chart Now +
26 JanuaryMy Server Keeps Turning Off! +
23 JanuaryMake to Act Only on Modified Files From Prerequisites +
5 JanuaryReview of Hyundai MPF825 MP3 Player +
2023 +
29 DecemberHow to Write Install Targets for Lua Modules in Makefiles +
27 DecemberSelf Update: End of Year 2023 +
29 MarchAlcohol of the Year 2022 +
27 MarchHow to Build Software With Make +
26 MarchHow to Generate Files From Templates in Shell +
23 MarchSelf Update: March 2023 +
2022 +
24 SeptemberStarshatter: The Open Source Project - Dev Update - September 2022 +
28 JulyGuilty Pleasure of Dirty Memory +
2 JulyLet's Not Store Versions in Versioned Files +
19 JuneUsing pacman to Manage Emscripten Packages +
28 AprilDifferent Ways of Reporting Errors +
8 AprilStarshatter: The Open Source Project - Dev Update - April 2022 +
30 JanuaryStarshatter: The Open Source Project - Dev Update - January 2022 +
28 JanuaryGit Rebase Illustrated With Time Travel +
27 JanuaryYou Can Serve Static Data Over HTTP +
25 JanuaryPlaying Around With Simple Interfaces +
2021 +
14 AugustHow to Compress Files in POSIX +
26 JulyHow to Archive With POSIX ar +
25 JulyDeconstructing Web Browsers +
7 JanuaryHow to Organize Your Lua Project +
6 JanuaryIgnore This License +
2020 +
14 AugustDear ImGui and LÖVE, +
3 AugustWriting Minimal HTML5 Documents is Fun +
28 JulyWeb Browsers Are No More +
22 JulyHow to Archive With POSIX tar, cpio and pax +
11 JulyOf Privacy and Traffic Tracking +
4 JulyEnvironments in Lua 5.2 and Beyond +
29 JuneHow to Flash LOLin NodeMCU v3 +
20 JuneHunt for Lex and Yacc, the Dinosaur +
12 JuneDifference Between /mnt and /media +
29 MayJourney /home - Application Deployment +
19 MayHalf of My CSS Are Links +
13 MayMarkdown Is Bad for You +
diff --git a/style.css b/style.css index 9bb1973..fafb9cf 100644 --- a/style.css +++ b/style.css @@ -92,28 +92,34 @@ a:active:hover { flex-wrap: wrap; } -#profile-picture { - display: block; - margin: 1em 1em 1em 0; - max-height: 4em; -} - #introduction { flex: 1; } -#posts li { - margin-bottom: 0.2em; -} - -#posts time { - font-size: 80%; - color: #999; -} - video, audio { display: block; margin: 1em auto; max-width: 720px; width: 100%; } + +table.index { + border-collapse: collapse; + width: 100%; +} + +table.index td:first-child { + text-align: right; +} + +table.index td.sep { + min-width: 1em; + width: 1em; + text-align: center; + user-select: none; +} + +table.index td { + vertical-align: top; + padding-bottom: 0.3em; +} -- cgit v1.1