remove old construction page

This commit is contained in:
Emile Clark-Boman 2025-07-28 10:59:04 +10:00
parent d4c0440136
commit 069b13fcb6
3 changed files with 0 additions and 103 deletions

View file

@ -1,63 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>i think alice is lost...</title>
<style>
html, body {
height: 100%;
}
body {
background-color: #fff;
background: radial-gradient(circle at center, #fff 0%, #f8f8f8 75%, #ebebeb 100%);
color: #222;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
font-size: 1rem;
line-height: 1.5;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
main {
padding: 1rem;
text-align: center;
}
h1 {
font-size: 2.5rem;
line-height: 1.1;
margin: 0;
}
@media screen and (max-width: 480px) {
h1 {
font-size: 1.5rem;
}
}
h1::after {
content: "";
background-color: #ffe800;
background: repeating-linear-gradient(45deg, #ffe800, #ffe800 0.5rem, #222 0.5rem, #222 1.0rem);
display: block;
height: 0.5rem;
margin-top: 1rem;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 1rem 0 0 0;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>dobutterfliescry.net</h1>
<p class="typewriter">Do butterflies cry when they're sad?</p>
<p>(ilovem)</p>
</main>
</body>
</html>

View file

@ -1,9 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>MITTENS NOW!!</title>
</head>
<body>
<p>Give me your mittens!</p>
</body>
</html>

View file

@ -1,31 +0,0 @@
:root {
--text-color: solid orange;
}
/* =========================================================== *
* Type Writer Effect *
* Ref: https://css-tricks.com/snippets/css/typewriter-effect/ *
/* =========================================================== */
.typewriter {
overflow: hidden; /* Crop everything that hasn't been "typed" yet */
border-right: .15em solid orange; /* Cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Scrolling effect while "typing" */
letter-spacing: .15em; /* Adjustable */
animation:
typewriter-typing 3.5s steps(40, end),
typewriter-cursor-blink .75s step-end infinite;
}
/* .typewriter typing effect */
@keyframes typerwriter-typing {
from { width: 0 }
to { width: 100% }
}
/* .typewriter cursor blink effect */
@keyframes typerwriter-cursor-blink {
from, to { border-color: transparent }
50% { border-color: orange; }
}