web boot page

This commit is contained in:
etherware-novice 2024-08-24 12:11:18 -05:00
parent 2eb29f9d83
commit ed95628814
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
15 changed files with 203 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 604 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

104
personal/webboot/index.css Normal file
View File

@ -0,0 +1,104 @@
@font-face {
font-family: LCDNUM;
src: url("font/Connection-3zA2z.ttf");
}
@font-face {
font-family: LCD;
src: url("font/LcdSolid-VPzB.ttf");
}
html {
background: url("images/ditto.png");
image-rendering: pixelated;
font-family: LCD;
overflow: clip;
}
#swatchClock { font-family: LCDNUM; }
#main {
position: fixed;
width: 90vw;
top: 20vh; left: 5vw;
max-height: 80vh;
text-align: center;
background-color: white;
}
#links {
position: absolute;
top: 15%; left: 6%;
width: 75%; height: 65%;
margin: auto;
text-align: center;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
gap: 10px; padding: 10px;
}
#links>* {
background-color: #70b070;
border: 5px #385030 solid;
}
.border {
border-image-slice: 34% 34% 34% 34%;
border-image-width: 20px;
border-image-repeat: stretch;
border-style: solid;
border-image-source: url("https://neoskitties.org/graphics/borders/tile003.png");
margin: 10vh auto;
padding: 15px;
}
#poketch {
margin: auto;
position: fixed;
height: 60vh; width: 40vw;
bottom: -5vw;
left: 32vw;
overflow: scroll;
}
#poketch>img { width: 100%; }
#poketch a { color: inherit; text-decoration: none; }
#swatchClock {
position: absolute;
top: 40%; width: 83%;
text-align: center;
font-size: 6rem;
margin: auto;
color: #385030;
}
#goomy {
position: fixed;
left: 0; bottom: 0;
width: 20vw;
}
#litclock {
position: fixed;
width: 90vw; margin: auto;
left: 5vw;
background-color: white;
padding: 25px;
padding-top: 40px; top: -45px;
text-align: center;
}
#litclock-pre {
margin-top: 5;
}
#litclock-time {
font-family: LCDNUM;
font-size: 3rem;
}

View File

@ -0,0 +1,99 @@
---
layout: null
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>welcome to the internet</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<script src="/assets/js/swatch.js"></script>
<div id="litclock" class="border">
<p>literature clock:</p>
<span id="litclock-pre"></span>
<span id="litclock-time"></span>
<span id="litclock-post"></span>
</div>
<div id="main" class="border">
<p>welcome to the pokenav</p>
<p>this goomy will stare at you</p>
</div>
<map name="map">
<area coords="550,70,650,220" shape="rect" onclick="dispTime()"></area>
<area coords="550,231,650,380" shape="rect" onclick="dispLink()"></area>
</map>
<div id="poketch" class="border">
<img src="images/poketch.png" usemap="#map">
<p id="swatchClock"></p>
<div id="links">
<a href="https://bsky.app">
<img src="images/icons1.png">
<p>bluesky</p>
</a>
<a href="https://tumblr.com">
<img src="images/icons2.png">
<p>tumblr</p>
</a>
<a href="https://forum.melonland.net/index.php">
<img src="images/icons3.png">
<p>melonforum</p>
</a>
<a href="https://neocities.org">
<img src="images/icons4.png">
<p>neocities</p>
</a>
<a href="https://minesweeper.online">
<img src="images/icons5.png">
<p>mines</p>
</a>
<a href="/personal/pokeblog">
<img src="images/icons6.png">
<p>my pokeblog</p>
</a>
</div>
</div>
<img src="images/goomy.png" id="goomy">
<script>
function dispTime() {
document.getElementById("swatchClock").style.display = "block";
document.getElementById("links").style.display = "none";
}
function dispLink() {
document.getElementById("swatchClock").style.display = "none";
document.getElementById("links").style.display = "flex";
}
function npad(num) {
if (num < 10) { num = "0" + num; }
return num;
}
async function updateFancyTime() {
let cdate = new Date();
let res = await fetch(`https://raw.githubusercontent.com/lbngoc/literature-clock/master/docs/times/${npad(cdate.getHours())}:${npad(cdate.getMinutes())}.json`);
let quotedex = await res.json();
let quotesel = quotedex[0];
document.getElementById("litclock-pre").innerHTML = quotesel.quote_first;
document.getElementById("litclock-time").innerHTML = quotesel.time;
document.getElementById("litclock-post").innerHTML = quotesel.quote_last;
return quotesel;
}
dispTime();
setInterval(updateFancyTime, 1000);
</script>
</body>