Initial commit, import from unversioned data on fugax.kernelmaft.com

This commit is contained in:
Reinout Meliesie 2026-04-29 15:34:22 +02:00
commit aa5c6c8557
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
4 changed files with 1382 additions and 0 deletions

1337
src/fonts.css Normal file

File diff suppressed because it is too large Load diff

15
src/index.html Normal file
View file

@ -0,0 +1,15 @@
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="utf-8"/>
<title>Kernelmaft</title>
<link href="/style.css" rel="stylesheet"/>
</head>
<body>
<h1>Welcome to Kernelmaft!</h1>
<p>Generally mafty kernels can be found anywhere, but best of all here.</p>
<hr/>
<!-- Link has to be HTTPS regardless of current protocol. -->
<a href="https://kernelmaft.com/forgejo/zedfrigg">Forgejo</a>
</body>
</html>

13
src/noise.svg Normal file
View file

@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 700 700" width="700" height="700">
<defs>
<filter id="nnnoise-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="linearRGB">
<feTurbulence type="fractalNoise" baseFrequency="0.167" numOctaves="4" seed="15" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence>
<feSpecularLighting surfaceScale="15" specularConstant="0.4" specularExponent="20" lighting-color="#ff0000" x="0%" y="0%" width="100%" height="100%" in="turbulence" result="specularLighting">
<feDistantLight azimuth="3" elevation="100"></feDistantLight>
</feSpecularLighting>
<feColorMatrix type="saturate" values="0" x="0%" y="0%" width="100%" height="100%" in="specularLighting" result="colormatrix"></feColorMatrix>
</filter>
</defs>
<rect width="700" height="700" fill="#FAFAFAFF"></rect>
<rect width="700" height="700" fill="#FF0000" filter="url(#nnnoise-filter)"></rect>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

17
src/style.css Normal file
View file

@ -0,0 +1,17 @@
@import url(/fonts.css);
body {
max-width: 800px;
margin: auto;
font-family: "IM FELL English", serif;
font-size: 24px;
background-image: url(/noise.svg);
}
h1 {}
hr {
margin-top: 100px;
}