This commit is contained in:
mtgmonkey 2025-06-08 13:11:14 +00:00
commit f7d48d286a
16 changed files with 519 additions and 0 deletions

View file

@ -0,0 +1,73 @@
html,
body {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #ffffff;
color: #0f172a;
}
body {
margin: 2em auto;
padding: 1em;
box-sizing: border-box;
width: 100%;
max-width: 1280px;
}
header {
text-align: center;
}
.logo {
display: inline-block;
background-image: url(../img/logo.png);
background-size: 100%;
width: 160px;
height: 53.875px;
}
.column {
width: 50%;
padding: 0.75em;
box-sizing: border-box;
float: left;
}
.clearfix {
display: table;
clear: both;
}
h1 {
font-size: 2.5em;
}
a {
color: #ff4400;
}
@media screen and (max-width: 512px) {
h1 {
font-size: 2em;
}
.column {
float: none;
width: 100%;
padding: 0;
}
}
@media screen and (prefers-color-scheme: dark) {
html,
body {
background-color: #0c0a09;
color: #e1e7ef;
}
.logo {
background-image: url(../img/logo-dark.png);
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<title>Ferron is installed successfully! 🥳</title>
</head>
<body>
<header>
<span class="logo"></span>
<h1>Ferron is installed successfully! 🥳</h1>
</header>
<section class="column">
<h2>If you're just visiting this website</h2>
<p>Thank you for visiting my website! It is not running yet. Contact me on Matrix @mtgmonkey:calitabby.net for a shoutout!</p>
<p><strong>Ferron probably has nothing to do with this website or its content, it just provides the
software for the website to run.</strong> If you have issues with this website, contact the
administrator of the website, not Ferron.</p>
</section>
<section class="column">
<h2>If you're an administrator of this website</h2>
<p>This page means that the web server's installation is successful. You can now add contents of the website to
the webroot directory (<i>/var/www/ferron</i> if installed using Ferron installer for GNU/Linux or via
Docker, or <i>%SystemDrive%\ferron\wwwroot</i> if installed using Ferron installer for Windows).</p>
<p>You can configure your web server according to <a href="https://www.ferronweb.org/docs">Ferron's
documentation.</a></p>
<p><strong>Thank you for installing Ferron!</strong></p>
</section>
<div class="clearfix"></div>
</body>
</html>