From: Skullheadx Date: Thu, 7 May 2026 03:14:02 +0000 (-0400) Subject: links page X-Git-Url: http://git.skullheadx.com/about.html?a=commitdiff_plain;h=bd63d1442a11053eefb34bcf36b0864c30acd0a4;p=skullheadx.com.git links page --- 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; + } +} + +