diff options
-rw-r--r-- | bg.xcf | bin | 0 -> 29046 bytes | |||
-rw-r--r-- | border.png | bin | 0 -> 1105 bytes | |||
-rw-r--r-- | index.php | 24 | ||||
-rw-r--r-- | logo.txt | 7 | ||||
-rw-r--r-- | style.css | 30 |
5 files changed, 58 insertions, 3 deletions
Binary files differ diff --git a/border.png b/border.png Binary files differnew file mode 100644 index 0000000..5369ddd --- /dev/null +++ b/border.png @@ -1,4 +1,17 @@ -<?php require_once "vendor/autoload.php"; ?> +<?php +require_once "vendor/autoload.php"; + +define("NAMES", [ + "Anne", + "Amity", + "Alyx", + "Aleteoryx", + "Dana", + "Maddie", + "Marcy", + "Sasha" +]); +?> <!doctype html> <html lang=en> <head> @@ -7,7 +20,12 @@ <link rel=stylesheet href="/style.css"> <link rel=canonical href="https://aleteoryx.me/"> </head> -<body> - <h1>hi!</h1> +<body<?php if ((new WhichBrowser\Parser(getallheaders()))->isType("mobile")) echo " class=mobile"; ?>> + <div aria-label="logo: ah lee tee ore ikhs dot m e" id=logo> + <pre><?= file_get_contents("logo.txt") ?></pre> + <pre><?= file_get_contents("logo.txt") ?></pre> + </div> + <div class=border> + <p>text text text</p> </body> </html> diff --git a/logo.txt b/logo.txt new file mode 100644 index 0000000..7ae8e27 --- /dev/null +++ b/logo.txt @@ -0,0 +1,7 @@ + __ __ https://aleteoryx.me + ___ _/ /__ / /____ ___ ______ ____ __ __ _ ___ +/ _ `/ / -_) __/ -_) _ \/ __/ // /\ \ /_ / ' \/ -_) +\_,_/_/\__/\__/\__/\___/_/ \_, //_\_\(_)/_/_/_/\__/ + /___/ + https://aleteoryx.me + aich-tee-tee-pee-ess://ah-lee-tee-ore-ikhs.m-e diff --git a/style.css b/style.css new file mode 100644 index 0000000..f53e107 --- /dev/null +++ b/style.css @@ -0,0 +1,30 @@ +:root { + background: #122; +} + +/* --- LOGO --- */ + +#logo { + position: relative; + display: none; +} + +#logo > :first-child { + color: #000; + position: absolute; + font-weight: 700; + filter: drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 3px #f77) drop-shadow(0px 0px 2px #f00); +} + +#logo > :last-child { + color: #fff; + position: absolute; +} + +/* --- BORDER --- */ + +.border { + border: 22px solid #0000; + border-image: url(/border.png) 22; + border-image-repeat: round; +} |