first commit

This commit is contained in:
Mathijs Lermer 2023-01-02 12:23:26 +01:00
commit 32772cad2f
12 changed files with 96 additions and 0 deletions

5
.well-known/security.txt Executable file
View file

@ -0,0 +1,5 @@
Contact: https://lermer.nl/contact/
Contact: mailto:mathijs@lermer.nl
Contact: https://matrix.to/#/@mathijs:lermer.nl
Expires: 2030-01-01T12:00:00.000Z
Preferred-Languages: nl, en

3
afb/Netwerk.svg Executable file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 59 KiB

BIN
afb/favicon.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
afb/logo.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
afb/matrix_rain.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

BIN
afb/matrix_rain_small.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
afb/matrix_world.jpeg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

BIN
afb/matrixcode.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

BIN
afb/morpheus.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

BIN
afb/morpheus.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

BIN
afb/pad.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

88
index.html Executable file
View file

@ -0,0 +1,88 @@
<!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>