diff --git a/apps/notepad.html b/apps/notepad.html index 54963f7..109c1e8 100644 --- a/apps/notepad.html +++ b/apps/notepad.html @@ -24,6 +24,6 @@ - + \ No newline at end of file diff --git a/door/common.css b/door/common.css new file mode 100644 index 0000000..9a7344c --- /dev/null +++ b/door/common.css @@ -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; +} \ No newline at end of file diff --git a/door/images/door.png b/door/images/door.png new file mode 100644 index 0000000..b063171 Binary files /dev/null and b/door/images/door.png differ diff --git a/door/index.html b/door/index.html new file mode 100644 index 0000000..0293ade --- /dev/null +++ b/door/index.html @@ -0,0 +1,50 @@ + + + + + + ??? + + + + +
+ +

The door is closed.

+
+ + \ No newline at end of file