From bd63d1442a11053eefb34bcf36b0864c30acd0a4 Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Wed, 6 May 2026 23:14:02 -0400 Subject: [PATCH] links page --- links.html | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 28 ++++++++++++++++ 2 files changed, 123 insertions(+) create mode 100644 links.html diff --git a/links.html b/links.html new file mode 100644 index 0000000..43fbb4f --- /dev/null +++ b/links.html @@ -0,0 +1,95 @@ + + + + + Outlinks Skullhead + + + + + + +
+
+ + + +
+ +
+ + +
+ +
+ + diff --git a/style.css b/style.css index c5916ac..127e15f 100644 --- a/style.css +++ b/style.css @@ -281,3 +281,31 @@ details[open] summary { margin-bottom: 0.5em; } +/* Links listing */ +.listing { + list-style: none; + margin: 2em; + display: grid; + gap: 20px; + grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); + grid-auto-rows: 1fr; + align-items: center; +} + +.listing > li { + display: flex; + flex-direction: column; + height:100%; +} + +.listing .body { + padding: 10px; + ul { + margin-left: 1em; + } + li { + list-style: disc; + } +} + + -- 2.54.0