From 21d3b5541a141b52058b7b5f195a24e53ac44e7c Mon Sep 17 00:00:00 2001 From: marleyrae Date: Wed, 14 Jun 2023 15:35:40 -0700 Subject: [PATCH] sues_virtual_life: links --- sues_virtual_life/TODO.txt | 2 +- sues_virtual_life/config.js | 2 +- sues_virtual_life/links/index.html | 188 ++++++++++++++++++ sues_virtual_life/links/links.html | 246 ++++++++++++++++++++++++ sues_virtual_life/sues_virtual_life.css | 21 +- 5 files changed, 455 insertions(+), 4 deletions(-) create mode 100644 sues_virtual_life/links/index.html create mode 100644 sues_virtual_life/links/links.html diff --git a/sues_virtual_life/TODO.txt b/sues_virtual_life/TODO.txt index e59d73a..2951813 100644 --- a/sues_virtual_life/TODO.txt +++ b/sues_virtual_life/TODO.txt @@ -3,7 +3,7 @@ INDEX June 2023 * past - links + * links catz dogz other diff --git a/sues_virtual_life/config.js b/sues_virtual_life/config.js index 1d87751..2dda0f4 100644 --- a/sues_virtual_life/config.js +++ b/sues_virtual_life/config.js @@ -12,7 +12,7 @@ const pageMetadata = { sourcePageName: 'past.html', }, links: { - captureId: '', + captureId: '20150918005946', sourcePageName: 'links.html', }, catz: { diff --git a/sues_virtual_life/links/index.html b/sues_virtual_life/links/index.html new file mode 100644 index 0000000..15f23dc --- /dev/null +++ b/sues_virtual_life/links/index.html @@ -0,0 +1,188 @@ + + + + + + + + Sue's Virtual Life + + + + + + + + + + + +
+
missing: linkname.gif
+
+ Links
+ Many sites are dormant, but still worth having a look.
+ +
+ + + +
Boardwalkerz Hosted
+ + +
Forums
+ + +
Petz Sites
+ + +
Babyz Sites
+ + +
Oddballz Sites
+ + +
Resource & Credit Links
+ + +
Haunts
+ + + diff --git a/sues_virtual_life/links/links.html b/sues_virtual_life/links/links.html new file mode 100644 index 0000000..28ff56a --- /dev/null +++ b/sues_virtual_life/links/links.html @@ -0,0 +1,246 @@ + + + + + + + + Sue's Virtual Life + + + + + + + + + + + +
+
missing: linkname.gif
+
+ Links
+ Many sites are dormant, but still worth having a look.
+ +
+ + + +
Boardwalkerz Hosted
+ + +
Forums
+ + +
Petz Sites
+ + +
Babyz Sites
+ + +
Oddballz Sites
+ + +
Resource & Credit Links
+ + +
Haunts
+ + + diff --git a/sues_virtual_life/sues_virtual_life.css b/sues_virtual_life/sues_virtual_life.css index b6b3422..8b61cb9 100644 --- a/sues_virtual_life/sues_virtual_life.css +++ b/sues_virtual_life/sues_virtual_life.css @@ -5,13 +5,14 @@ * text ................... global text styles * menu ................... left sidebar nav menu * sidebar-text ........... text sections on sidebars + * missing ................ box for missing assets */ /* -------------------------------------------------------------------------- *\ &layout \* -------------------------------------------------------------------------- */ -body { +body:not(#links) { --background-color: #fff; display: grid; @@ -68,7 +69,7 @@ footer { &text \* -------------------------------------------------------------------------- */ -body { +body:not(#links) { --color: #000; font-family: Tahoma, sans-serif; @@ -86,6 +87,10 @@ a:hover { cursor: crosshair; } +.defunct { + text-decoration: line-through; +} + /* -------------------------------------------------------------------------- *\ &menu @@ -149,3 +154,15 @@ a:hover { .sidebar-text-title { text-decoration: underline; } + + +/* -------------------------------------------------------------------------- *\ + &missing +\* -------------------------------------------------------------------------- */ + +.missing { + border: 1px solid; + padding: 3px 7px; + font-style: italic; + display: inline-block; +}