idk if i committed yet tbh

This commit is contained in:
2025-08-14 20:00:50 -07:00
parent ffabba137e
commit f26ad6b276
8 changed files with 42 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -19,7 +19,9 @@
<div class="h1-container"> <div class="h1-container">
<h1>Ted Pier<span class="subtitle">a.k.a. MiningTcup</span></h1> <h1>Ted Pier<span class="subtitle">a.k.a. MiningTcup</span></h1>
</div> </div>
<img src="lulu.webp" alt="Lulu the dog" /> <a href="lulu.html"
><img src="images/lulu.webp" alt="Lulu the dog"
/></a>
</div> </div>
<hr /> <hr />
<section> <section>

View File

@@ -14,11 +14,34 @@
<div class="h1-container"> <div class="h1-container">
<h1>Lulu Pier<span class="subtitle">&nbsp;a.k.a. Doggo</span></h1> <h1>Lulu Pier<span class="subtitle">&nbsp;a.k.a. Doggo</span></h1>
</div> </div>
<img src="lulu.webp" alt="Lulu the dog" /> <a href="index.html"><img alt="Ted" id="title-img" /></a>
</div> </div>
<hr /> <hr />
hello <p>
My favorite thing to do is chase tennis balls in the back yard.
Sometimes I even catch them mid-air! Close runner-ups are running
around at the park, going on walks, and greeting my people when they
come home.
</p>
<img class="media" src="images/lulu2.jpg" alt="Happy Lulu" />
<p>
All that running is tiring! After a long time outside, I'll go to my
perch atop the couch and pant.
</p>
<img
class="media"
src="images/lulu-perch.jpg"
alt="Lulu perched upon the couch"
/>
<p>
Gotta clean off after a long day's work. I'll just use this here
towel...
</p>
<video class="media" controls src="media/lulu-roll.mp4">
Lulu rolling around
</video>
</div> </div>
</div> </div>
<script src="lulu.js"></script>
</body> </body>
</html> </html>

BIN
lulu.webp

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -6,7 +6,7 @@ infoContainer.addEventListener("click", loadContactInfo);
function loadContactInfo() { function loadContactInfo() {
infoContainer.innerHTML = atob( infoContainer.innerHTML = atob(
"PGRpdj48YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0iaHR0cHM6Ly9kaXNjb3JkLmNvbS91c2Vycy84MjU0ODcxMzg5NDY1NDc3MTIiPjxpbWcgY2xhc3M9ImJ1bGxldC1pbWciIHNyYz0iZGlzY29yZC5wbmciIGFsdD0iRGlzY29yZCIgLz5taW5pbmd0Y3VwPC9hPjwvZGl2PjxkaXY+PGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9Im1haWx0bzp0ZWRAbWluaW5ndGN1cC5tZSI+PGltZyBjbGFzcz0iYnVsbGV0LWltZyIgc3JjPSJwcm90b25tYWlsLnBuZyIgYWx0PSJFbWFpbCIvPnRlZEBtaW5pbmd0Y3VwLm1lPC9hPjwvZGl2PjxkaXY+PGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9InRlbDorMS02NTAtNTEyLTk2MzUiPjxpbWcgY2xhc3M9ImJ1bGxldC1pbWciIHNyYz0icGhvbmUud2VicCIgYWx0PSJQaG9uZSIgLz4oNjUwKSA1MTItOTYzNTwvYT48L2Rpdj4=", "PGRpdj48YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0iaHR0cHM6Ly9kaXNjb3JkLmNvbS91c2Vycy84MjU0ODcxMzg5NDY1NDc3MTIiPjxpbWcgY2xhc3M9ImJ1bGxldC1pbWciIHNyYz0iaW1hZ2VzL2Rpc2NvcmQucG5nIiBhbHQ9IkRpc2NvcmQiIC8+bWluaW5ndGN1cDwvYT48L2Rpdj48ZGl2PjxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJtYWlsdG86dGVkQG1pbmluZ3RjdXAubWUiPjxpbWcgY2xhc3M9ImJ1bGxldC1pbWciIHNyYz0iaW1hZ2VzL3Byb3Rvbm1haWwucG5nIiBhbHQ9IkVtYWlsIi8+dGVkQG1pbmluZ3RjdXAubWU8L2E+PC9kaXY+PGRpdj48YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0idGVsOisxLTY1MC01MTItOTYzNSI+PGltZyBjbGFzcz0iYnVsbGV0LWltZyIgc3JjPSJpbWFnZXMvcGhvbmUud2VicCIgYWx0PSJQaG9uZSIgLz4oNjUwKSA1MTItOTYzNTwvYT48L2Rpdj4=",
); );
infoContainer.classList.remove("cover"); infoContainer.classList.remove("cover");
infoContainer.removeEventListener("mousedown", loadContactInfo); infoContainer.removeEventListener("mousedown", loadContactInfo);

View File

@@ -8,6 +8,13 @@
#content { #content {
max-width: 512px; max-width: 512px;
padding-bottom: 25vh;
}
.media {
max-width: 512px;
display: block;
margin: 16px 0;
} }
h3 { h3 {
@@ -52,10 +59,6 @@ p {
max-width: 256px; max-width: 256px;
} }
#content {
padding-bottom: 25vh;
}
.cover { .cover {
cursor: pointer; cursor: pointer;
background: light-dark(white, #181825); background: light-dark(white, #181825);
@@ -93,6 +96,7 @@ p {
overflow: hidden; overflow: hidden;
display: grid; display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
background: light-dark(black, whitesmoke);
} }
#title-1 > .h1-container { #title-1 > .h1-container {
@@ -106,12 +110,16 @@ p {
margin: 0; margin: 0;
} }
#title-1 > img { #title-1 > a > img {
z-index: 0; z-index: 0;
display: block; display: block;
max-height: 71px; max-height: 71px;
min-width: 100%;
object-fit: cover;
} }
img {}
.disabled { .disabled {
pointer-events: none; pointer-events: none;
} }