88 lines
2 KiB
HTML
Executable file
88 lines
2 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Lermer's CDN</title>
|
|
<link rel="icon" href="afb/favicon.png" type="image/png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.bg-image {
|
|
/* The image used */
|
|
/* background-image: url("afb/pad.jpg"); */
|
|
background-image: url("https://cdn.lermer.nl/afb/matrix_world.jpeg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
|
|
/* Add the blur effect */
|
|
/* filter: blur(8px);
|
|
-webkit-filter: blur(0px); */
|
|
|
|
/* Full height */
|
|
height: 100%;
|
|
|
|
/* Center and scale the image nicely */
|
|
|
|
}
|
|
|
|
/* Position text in the middle of the page/image */
|
|
.bg-text {
|
|
background-color: rgb(0,0,0); /* Fallback color */
|
|
background-color: rgba(0, 71, 10, 0.637); /* Black w/opacity/see-through */
|
|
color: white;
|
|
font-weight: bold;
|
|
border: 3px solid green;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 2;
|
|
width: 80%;
|
|
padding: 20px;
|
|
text-align: center;
|
|
|
|
background-image: url("https://cdn.lermer.nl/afb/matrix_rain_small.gif");
|
|
background-repeat: repeat;
|
|
background-size: auto;
|
|
}
|
|
#online h1{
|
|
color: green;
|
|
font-size: 80px;
|
|
text-shadow: -3px 0 grey, 0 3px grey, 3px 0 grey, 0 -3px grey, 1px 1px 2px grey, 0 0 25px grey, 0 0 5px grey;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="bg-image"></div>
|
|
|
|
<div class="bg-text">
|
|
<h2>CDN Status:</h2>
|
|
<div id="online">
|
|
<h1>ONLINE</h1>
|
|
</div>
|
|
|
|
<p><span id="datetime"></span></p>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
<script>
|
|
function goBack() {
|
|
window.history.back();
|
|
}
|
|
|
|
var dt = new Date();
|
|
document.getElementById("datetime").innerHTML = (("0"+dt.getDate()).slice(-2)) +"-"+ (("0"+(dt.getMonth()+1)).slice(-2)) +"-"+ (dt.getFullYear()) +" "+ (("0"+dt.getHours()).slice(-2)) +":"+ (("0"+dt.getMinutes()).slice(-2));
|
|
</script>
|
|
|
|
</html>
|