sues_virtual_life: index
|
@ -24,14 +24,16 @@ div#archive-menu {
|
||||||
|
|
||||||
div#archive-menu a {
|
div#archive-menu a {
|
||||||
display: block;
|
display: block;
|
||||||
|
text-decoration: underline;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
transition: visibility 0s;
|
transition: visibility 0s;
|
||||||
|
color: var(--color, black);
|
||||||
}
|
}
|
||||||
|
|
||||||
div#archive-menu a:hover {
|
div#archive-menu a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
text-decoration-style: wavy;
|
text-decoration-style: wavy;
|
||||||
|
color: var(--color, black);
|
||||||
}
|
}
|
||||||
|
|
||||||
div#archive-menu #hrt {
|
div#archive-menu #hrt {
|
||||||
|
|
8
sues_virtual_life/TODO.txt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
INDEX
|
||||||
|
past
|
||||||
|
links
|
||||||
|
catz
|
||||||
|
dogz
|
||||||
|
other
|
||||||
|
babyz
|
||||||
|
archive
|
|
@ -0,0 +1,46 @@
|
||||||
|
let currentPage = location.pathname.split('/').at(-2)
|
||||||
|
|
||||||
|
const waybackSiteBase = 'http://boardwalkerz.com/svl/'
|
||||||
|
|
||||||
|
const pageMetadata = {
|
||||||
|
sues_virtual_life: {
|
||||||
|
captureId: '20150810211140',
|
||||||
|
sourcePageName: '',
|
||||||
|
},
|
||||||
|
past: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'past.html',
|
||||||
|
},
|
||||||
|
links: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'links.html',
|
||||||
|
},
|
||||||
|
catz: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'catz.html',
|
||||||
|
},
|
||||||
|
dogz: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'dogz.html',
|
||||||
|
},
|
||||||
|
other: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'other.html',
|
||||||
|
},
|
||||||
|
babyz: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'babyz.html',
|
||||||
|
},
|
||||||
|
archive: {
|
||||||
|
captureId: '',
|
||||||
|
sourcePageName: 'archive.html',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const wayback =
|
||||||
|
pageMetadata[currentPage].captureId
|
||||||
|
+ '/'
|
||||||
|
+ waybackSiteBase
|
||||||
|
+ pageMetadata[currentPage].sourcePageName
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,13 @@ function html() {
|
||||||
return src(htmlFiles)
|
return src(htmlFiles)
|
||||||
.pipe(posthtml([
|
.pipe(posthtml([
|
||||||
require('posthtml-urls')({
|
require('posthtml-urls')({
|
||||||
eachURL: (url) => url[0] === '/' && url !== '/menu.js' ? `/sues_virtual_life${url}` : url,
|
eachURL: (url) => {
|
||||||
|
if (url[0] === '/' && url !== '/menu.js') {
|
||||||
|
return `/sues_virtual_life${url}`
|
||||||
|
} else {
|
||||||
|
return url
|
||||||
|
}
|
||||||
|
},
|
||||||
}),
|
}),
|
||||||
]))
|
]))
|
||||||
.pipe(rename(path => {
|
.pipe(rename(path => {
|
||||||
|
@ -23,4 +29,5 @@ exports.default = function () {
|
||||||
browserSync.init(require('../bs-config'))
|
browserSync.init(require('../bs-config'))
|
||||||
|
|
||||||
watch(htmlFiles, {ignoreInitial: false}, html)
|
watch(htmlFiles, {ignoreInitial: false}, html)
|
||||||
|
watch('sues_virtual_life.css').on('change', browserSync.reload)
|
||||||
}
|
}
|
||||||
|
|
BIN
sues_virtual_life/img/a-link.gif
Normal file
After Width: | Height: | Size: 1,006 B |
BIN
sues_virtual_life/img/ban.gif
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
sues_virtual_life/img/beagle.gif
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
sues_virtual_life/img/bs-avatar-a.gif
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
sues_virtual_life/img/bs-icon.ico
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
sues_virtual_life/img/divide.gif
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
sues_virtual_life/img/homepic.gif
Normal file
After Width: | Height: | Size: 16 KiB |
126
sues_virtual_life/index.html
Normal file
|
@ -0,0 +1,126 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<!-- from source -->
|
||||||
|
<title>Sue's Virtual Life</title>
|
||||||
|
<link rel="shortcut icon" href="img/bs-icon.ico">
|
||||||
|
<!-- -->
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="/sues_virtual_life/sues_virtual_life.css">
|
||||||
|
|
||||||
|
<!-- archive menu -->
|
||||||
|
<script src="/menu.js" type="module"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!----------------------------------------------------------------- header ---->
|
||||||
|
<header>
|
||||||
|
<img src="/sues_virtual_life/img/ban.gif">
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!------------------------------------------------------------------- main ---->
|
||||||
|
<main>
|
||||||
|
<img src="/sues_virtual_life/img/homepic.gif" alt="Left to Right: Wally, Thankies, Spike & Beanie">
|
||||||
|
|
||||||
|
<p>This site contains downloads of my own creation<br>
|
||||||
|
for the virtual life games Petz and Babyz<br>
|
||||||
|
Always refresh each page!</p>
|
||||||
|
|
||||||
|
<img src="/sues_virtual_life/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>06.24.15: Special Bulletin:</u><br>
|
||||||
|
Hopefully re-opening in Fall 2015!</p>
|
||||||
|
|
||||||
|
<img src="/sues_virtual_life/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>Installation</u></p>
|
||||||
|
|
||||||
|
<p><u>Petz</u><br>
|
||||||
|
.dog + .cat files p3+4: c:/program files/pf magic/petz/resource/dog-cat<br>
|
||||||
|
same p5: c/program files/ubi soft/studio mythos/petz 5/resource/dog-cat<br>
|
||||||
|
.pet files: same/same/same/adopted petz<br>
|
||||||
|
.clo files: same/same/same/resource/clothes</p>
|
||||||
|
|
||||||
|
<p><u>Babyz</u><br>
|
||||||
|
.baby files c/program files/mindscape/babyz/adopted babyz<br>
|
||||||
|
.clo files same/same/same/resource/clothes</p>
|
||||||
|
|
||||||
|
<img src="/sues_virtual_life/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>Disclaimer</u></p>
|
||||||
|
|
||||||
|
<p>This is a fan site only. The items on this web site all work in my
|
||||||
|
games.<br>
|
||||||
|
I am not responsible for problems you may have with your own games.<br>
|
||||||
|
You download and use these items at your own risk.</p>
|
||||||
|
|
||||||
|
<img src="/sues_virtual_life/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>Contact</u></p>
|
||||||
|
|
||||||
|
<img src="/sues_virtual_life/img/bs-avatar-a.gif">
|
||||||
|
|
||||||
|
<p>sue at boardwalkerz dot com<br>
|
||||||
|
(Replace at with @ and dot with .)<br>
|
||||||
|
Please contact about site issues only. Thanks. ;-)</p>
|
||||||
|
|
||||||
|
<img src="/sues_virtual_life/img/divide.gif">
|
||||||
|
<br>
|
||||||
|
<img src="/sues_virtual_life/img/beagle.gif" alt="Good dog, Dixie!">
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-------------------------------------------------------------------- nav ---->
|
||||||
|
<nav>
|
||||||
|
<div class="menu">
|
||||||
|
<div class="menu-title">Information</div>
|
||||||
|
<a href="/sues_virtual_life/" class="menu-item">Home Page</a>
|
||||||
|
<a href="/sues_virtual_life/past/" class="menu-item">Past Updates</a>
|
||||||
|
<a href="/sues_virtual_life/links/" class="menu-item">Related Links</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="menu">
|
||||||
|
<div class="menu-title">Downloads</div>
|
||||||
|
<a href="/sues_virtual_life/catz/" class="menu-item">Catz Unibreedz</a>
|
||||||
|
<a href="/sues_virtual_life/dogz/" class="menu-item">Dogz Unibreedz</a>
|
||||||
|
<a href="/sues_virtual_life/other/" class="menu-item">Other Unibreedz</a>
|
||||||
|
<a href="/sues_virtual_life/babyz/" class="menu-item">Babyz Adoption</a>
|
||||||
|
<a href="/sues_virtual_life/archive/" class="menu-item">PB Archive</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Newest Download:</div>
|
||||||
|
Nothing new now.<br>
|
||||||
|
Check past updates for recent additions.
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!---------------------------------------------------------------- sidebar ---->
|
||||||
|
<aside>
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Updates:</div>
|
||||||
|
Date: 03.23.15<br>
|
||||||
|
SVL Closed until further notice
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Related News:</div>
|
||||||
|
03.23.15: I changed the layout to an old spring css fluid.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Layout Info:</div>
|
||||||
|
Best View: IE9, Safari 5.1.2<br>
|
||||||
|
CSS Fluid Layout
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<!----------------------------------------------------------------- footer ---->
|
||||||
|
<div class="spacer"></div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
Boardwalkerz © 2004-2015. All rights reserved.
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,6 +1,75 @@
|
||||||
|
/**
|
||||||
|
* TABLE OF CONTENTS
|
||||||
|
*
|
||||||
|
* layout ................. site layout
|
||||||
|
* text ................... global text styles
|
||||||
|
* menu ................... left sidebar nav menu
|
||||||
|
* sidebar-text ........... text sections on sidebars
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- *\
|
||||||
|
&layout
|
||||||
|
\* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
body {
|
||||||
|
--background-color: #fff;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template:
|
||||||
|
'header header header' 90px
|
||||||
|
'nav main aside' auto
|
||||||
|
'spacer spacer spacer' 10px
|
||||||
|
'footer footer footer' auto /
|
||||||
|
230px auto 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > * {
|
||||||
|
padding: 0 10px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
grid-area: header;
|
||||||
|
background-color: #7ac5cd;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
grid-area: main;
|
||||||
|
background-color: #ffd700;
|
||||||
|
text-align: center;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
grid-area: nav;
|
||||||
|
background-color: #cd8c95;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside {
|
||||||
|
grid-area: aside;
|
||||||
|
background-color: #cd8c95;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spacer {
|
||||||
|
grid-area: spacer;
|
||||||
|
background-color: #cd8c95;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
grid-area: footer;
|
||||||
|
background-color: #66cd00;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
padding: 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- *\
|
||||||
|
&text
|
||||||
|
\* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
body {
|
body {
|
||||||
--color: #000;
|
--color: #000;
|
||||||
--background-color: #fff;
|
|
||||||
|
|
||||||
font-family: Tahoma, sans-serif;
|
font-family: Tahoma, sans-serif;
|
||||||
color: var(--color);
|
color: var(--color);
|
||||||
|
@ -9,19 +78,74 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:visited, a:active {
|
a, a:visited, a:active {
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #fff;
|
|
||||||
text-decoration: underline overline;
|
text-decoration: underline overline;
|
||||||
cursor: crosshair;
|
cursor: crosshair;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
|
||||||
height: 90px;
|
/* -------------------------------------------------------------------------- *\
|
||||||
background-color: #7ac5cd;
|
&menu
|
||||||
padding: 0 10px 10px;
|
\* -------------------------------------------------------------------------- */
|
||||||
text-align: center;
|
|
||||||
|
.menu {
|
||||||
|
margin-top: 47px;
|
||||||
|
width: 190px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu + .menu {
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-title {
|
||||||
|
font: bold 13px Verdana;
|
||||||
|
color: white;
|
||||||
|
background: #8b5f65 url(img/a-link.gif) no-repeat 8px 6px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 7px 0 7px 31px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item {
|
||||||
|
margin-bottom: 2px;
|
||||||
|
font-size: 13px;
|
||||||
|
background-color: #ffb6c1;
|
||||||
|
display: block;
|
||||||
|
padding: 5px 0 5px 8px;
|
||||||
|
line-height: 17px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item:visited, .menu-item:active {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #ffd700;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- *\
|
||||||
|
&sidebar-text
|
||||||
|
\* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
.sidebar-text {
|
||||||
|
margin-top: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-text + .sidebar-text {
|
||||||
|
margin-top: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-text-title::before {
|
||||||
|
content: url(img/a-link.gif);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-text-title {
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,8 +15,113 @@
|
||||||
<script src="/menu.js" type="module"></script>
|
<script src="/menu.js" type="module"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<!----------------------------------------------------------------- header ---->
|
||||||
<header>
|
<header>
|
||||||
|
<img src="/img/ban.gif">
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<!------------------------------------------------------------------- main ---->
|
||||||
|
<main>
|
||||||
|
<img src="/img/homepic.gif"
|
||||||
|
alt="Left to Right: Wally, Thankies, Spike & Beanie">
|
||||||
|
|
||||||
|
<p>This site contains downloads of my own creation<br>
|
||||||
|
for the virtual life games Petz and Babyz<br>
|
||||||
|
Always refresh each page!</p>
|
||||||
|
|
||||||
|
<img src="/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>06.24.15: Special Bulletin:</u><br>
|
||||||
|
Hopefully re-opening in Fall 2015!</p>
|
||||||
|
|
||||||
|
<img src="/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>Installation</u></p>
|
||||||
|
|
||||||
|
<p><u>Petz</u><br>
|
||||||
|
.dog + .cat files p3+4: c:/program files/pf magic/petz/resource/dog-cat<br>
|
||||||
|
same p5: c/program files/ubi soft/studio mythos/petz 5/resource/dog-cat<br>
|
||||||
|
.pet files: same/same/same/adopted petz<br>
|
||||||
|
.clo files: same/same/same/resource/clothes</p>
|
||||||
|
|
||||||
|
<p><u>Babyz</u><br>
|
||||||
|
.baby files c/program files/mindscape/babyz/adopted babyz<br>
|
||||||
|
.clo files same/same/same/resource/clothes</p>
|
||||||
|
|
||||||
|
<img src="/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>Disclaimer</u></p>
|
||||||
|
|
||||||
|
<p>This is a fan site only. The items on this web site all work in my
|
||||||
|
games.<br>
|
||||||
|
I am not responsible for problems you may have with your own games.<br>
|
||||||
|
You download and use these items at your own risk.</p>
|
||||||
|
|
||||||
|
<img src="/img/divide.gif">
|
||||||
|
|
||||||
|
<p><u>Contact</u></p>
|
||||||
|
|
||||||
|
<img src="/img/bs-avatar-a.gif">
|
||||||
|
|
||||||
|
<p>sue at boardwalkerz dot com<br>
|
||||||
|
(Replace at with @ and dot with .)<br>
|
||||||
|
Please contact about site issues only. Thanks. ;-)</p>
|
||||||
|
|
||||||
|
<img src="/img/divide.gif">
|
||||||
|
<br>
|
||||||
|
<img src="/img/beagle.gif" alt="Good dog, Dixie!">
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-------------------------------------------------------------------- nav ---->
|
||||||
|
<nav>
|
||||||
|
<div class="menu">
|
||||||
|
<div class="menu-title">Information</div>
|
||||||
|
<a href="/" class="menu-item">Home Page</a>
|
||||||
|
<a href="/past/" class="menu-item">Past Updates</a>
|
||||||
|
<a href="/links/" class="menu-item">Related Links</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="menu">
|
||||||
|
<div class="menu-title">Downloads</div>
|
||||||
|
<a href="/catz/" class="menu-item">Catz Unibreedz</a>
|
||||||
|
<a href="/dogz/" class="menu-item">Dogz Unibreedz</a>
|
||||||
|
<a href="/other/" class="menu-item">Other Unibreedz</a>
|
||||||
|
<a href="/babyz/" class="menu-item">Babyz Adoption</a>
|
||||||
|
<a href="/archive/" class="menu-item">PB Archive</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Newest Download:</div>
|
||||||
|
Nothing new now.<br>
|
||||||
|
Check past updates for recent additions.
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!---------------------------------------------------------------- sidebar ---->
|
||||||
|
<aside>
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Updates:</div>
|
||||||
|
Date: 03.23.15<br>
|
||||||
|
SVL Closed until further notice
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Related News:</div>
|
||||||
|
03.23.15: I changed the layout to an old spring css fluid.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-text">
|
||||||
|
<div class="sidebar-text-title">Layout Info:</div>
|
||||||
|
Best View: IE9, Safari 5.1.2<br>
|
||||||
|
CSS Fluid Layout
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<!----------------------------------------------------------------- footer ---->
|
||||||
|
<div class="spacer"></div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
Boardwalkerz © 2004-2015. All rights reserved.
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|