add door
This commit is contained in:
parent
77ff4a8814
commit
8d4cf12116
4 changed files with 82 additions and 1 deletions
|
@ -24,6 +24,6 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<textarea style="width: 100%; height: 100%; resize: none; border:none; font-size: large; margin:0;">I've eaten nothing but rocks for 3 days...
I don't know how much longer I can keep this going... I need food

--- January 21

It's been so long... I don't know where I end end and the rocks begin.

--- March 12

I've started to see things I'm not sure are really there... creatures of pure stone. Can they see me? Why doesn't anyone else notice?

--- April 17</textarea>
|
||||
<textarea style="width: 100%; height: 100%; resize: none; border:none; font-size: large; margin:0;">I've eaten nothing but rocks for 3 days...
I don't know how much longer I can keep this going... I need food

--- January 21

It's been so long... I don't know where I end end and the rocks begin.

--- March 12

I've started to see things I'm not sure are really there... creatures of pure stone. Can they see me? Why doesn't anyone else notice?

--- April 17

The door sits there, taunting. I wonder what's behind it but I am afraid...

I have left a note in the guestbook.. please make sure nobody else finds out about this

--- July 4</textarea>
|
||||
</body>
|
||||
</html>
|
31
door/common.css
Normal file
31
door/common.css
Normal file
|
@ -0,0 +1,31 @@
|
|||
body, html {
|
||||
padding:0;
|
||||
margin: 0;
|
||||
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
text-align: center;
|
||||
align-content: center;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
@keyframes reveal {
|
||||
0% {
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
p {
|
||||
color: white;
|
||||
}
|
BIN
door/images/door.png
Normal file
BIN
door/images/door.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 76 KiB |
50
door/index.html
Normal file
50
door/index.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>???</title>
|
||||
|
||||
<style>
|
||||
body, html {
|
||||
padding:0;
|
||||
margin: 0;
|
||||
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
text-align: center;
|
||||
align-content: center;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
@keyframes reveal {
|
||||
0% {
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
animation: reveal 5s;
|
||||
}
|
||||
|
||||
p {
|
||||
animation: reveal 5s forwards;
|
||||
animation-delay: 4s;
|
||||
opacity: 0%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<img src="/door/images/door.png" />
|
||||
<p>The door is closed.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue