Remove cursor.php fully and new 404.
parent
c5da76389b
commit
7ce2c4030f
@ -1,36 +1,30 @@
|
|||||||
<!DOCTYPE html>
|
<?php
|
||||||
<html>
|
$title = "reconnect";
|
||||||
<head>
|
$tags = "reconnect";
|
||||||
<title>404</title>
|
$root = "";
|
||||||
<link rel="stylesheet" href="/styles/fonts.css" />
|
require "includes/start-meta.php";
|
||||||
<link rel="stylesheet" href="/styles/cursor.css" />
|
?>
|
||||||
<link rel="stylesheet" href="/styles/404.css" />
|
<link rel="stylesheet" href="styles/splash.css" />
|
||||||
<!--
|
<link rel="stylesheet" href="styles/fonts.css" />
|
||||||
styles/font.css
|
<style type="text/css">
|
||||||
styles/cursor.css
|
html, body {margin: 0; height: 100%; overflow: hidden}
|
||||||
styles/404.css
|
</style>
|
||||||
-->
|
<meta property="og:type" content="website" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta property="og:title" content="~$ Reconnect to the Broken-Moon Network" />
|
||||||
|
<meta property="og:image" content="/images/banner.gif" />
|
||||||
|
<meta property="og:image:type" content="image/gif" />
|
||||||
|
<meta property="og:image:width" content="240" />
|
||||||
|
<meta property="og:image:height" content="60" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<marquee scrollamount="10">
|
<h1><span><a href="home.php">~$ Reconnect to the Broken-Moon Network</a></span></h1>
|
||||||
<h1>Uh oh</h1>
|
|
||||||
</marquee>
|
<?php
|
||||||
<div style="text-align: center; margin-left: auto; margin-right: auto;">
|
$usragent=$_SERVER['HTTP_USER_AGENT'];
|
||||||
<span class="notfound">404 - Not Found</span>
|
if (!strpos($usragent, 'PaleMoon') !== false) {
|
||||||
<p>There is nothing here.</p>
|
echo '<p style="position: absolute; right: 10px; bottom: 10px;"><a href="scrollbar.php">Display Scrollbar on this Site</a></p>';
|
||||||
<p>We appear to be lost.</p>
|
}
|
||||||
<div class="lostimg">
|
?>
|
||||||
<a class="lostimglink" href="/home.php">
|
|
||||||
<!-- home.php -->
|
|
||||||
Take me Home,<br />
|
|
||||||
country road
|
|
||||||
</a>
|
|
||||||
<a href="/home.php"><img src="/images/404.gif" /></a>
|
|
||||||
<!--
|
|
||||||
home.php
|
|
||||||
images/404.gif
|
|
||||||
-->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
|
</html>
|
||||||
|
@ -1,56 +0,0 @@
|
|||||||
:root {
|
|
||||||
--fg-col: #FFFFFF;
|
|
||||||
--main-col: #94B1FF;
|
|
||||||
--grey-col: #CCCCCC;
|
|
||||||
--bg-col: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background: var(--bg-col);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
border: unset;
|
|
||||||
text-align: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
letter-spacing: 3px;
|
|
||||||
animation: lost 10s ease-in-out infinite;
|
|
||||||
animation-play-state: running;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lostimg {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 35%;
|
|
||||||
min-width: 350px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lostimglink {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lostimg img {
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes lost {
|
|
||||||
0% {
|
|
||||||
letter-spacing: 3px;
|
|
||||||
}
|
|
||||||
50% {
|
|
||||||
letter-spacing: 12px;
|
|
||||||
}
|
|
||||||
0% {
|
|
||||||
letter-spacing: 3px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.notfound {
|
|
||||||
font-weight: bold;
|
|
||||||
color: var(--main-col);
|
|
||||||
}
|
|
Loading…
Reference in New Issue