toys

Changed files
+44
site
assets
styles
toys
+7
site/assets/styles/main.css
··· 1 + @import url(https://fonts.bunny.net/css?family=jetbrains-mono:400); 2 + 1 3 @media only screen and (max-width: 576px) { 2 4 main { 3 5 font-size: 4vw !important; ··· 200 202 video[poster] { 201 203 object-fit: cover; 202 204 205 + } 206 + 207 + code { 208 + font-size: .9rem; 209 + font-family: "JetBrains Mono", monospace; 203 210 } 204 211 205 212 #commit {
+1
site/nav_main.php
··· 5 5 <li><a href="/elsewhere">elsewhere</a></li> 6 6 <li><a href="/docs">docs</a></li> 7 7 <li><a href="/vids">videos</a></li> 8 + <li><a href="/toys">toys</a></li> 8 9 <li><a href="/floppies">floppies</a></li> 9 10 <li><a href="/">refresh</a></li> 10 11 </ul>
+36
site/toys/index.php
··· 1 + <?php 2 + 3 + include "../httpheaders.php"; 4 + 5 + ?> 6 + 7 + <!DOCTYPE html> 8 + <html lang="en"> 9 + 10 + <?php include "../head.php" ?> 11 + 12 + <body> 13 + 14 + <main> 15 + <header> 16 + <h1 class="highlight" id="toys">toys</h1> 17 + </header> 18 + 19 + <?php include "../nav_main.php" ?> 20 + 21 + <p>just some fun stuff i have on this site <span aria-label="smile" role="img">:)</span></p> 22 + 23 + <h2 id="terminal" class="highlight">terminal</h2> 24 + 25 + <dl> 26 + <dt>ping pong!</dt> 27 + <dd><code>curl girlonthemoon.xyz/ping</code> (<a href="/ping">browser</a>)</dd> 28 + <dt>IP checker</dt> 29 + <dd><code>curl girlonthemoon.xyz/whoami</code> (<a href="/whoami">browser</a>)</dd> 30 + </dl> 31 + 32 + </main> 33 + 34 + </body> 35 + 36 + </html>