Initial commit.
This commit is contained in:
commit
acc92a6d9a
13 changed files with 1332 additions and 0 deletions
104
www/index.html
Normal file
104
www/index.html
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items:center;
|
||||
margin: 0;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
a {
|
||||
color: orangered;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: red;
|
||||
}
|
||||
|
||||
footer {
|
||||
border-top: 1px solid white;
|
||||
}
|
||||
|
||||
header {
|
||||
border-bottom: 1px solid white;
|
||||
}
|
||||
|
||||
#everythingHelper::before {
|
||||
content: "";
|
||||
background-image: url(background.jpg);
|
||||
position: absolute;
|
||||
background-size: cover;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: -1;
|
||||
opacity: .25;
|
||||
}
|
||||
|
||||
#everythingHelper {
|
||||
max-width: 50vw;
|
||||
}
|
||||
|
||||
#titleLinks {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#titleLinks * {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
#everythingHelper {
|
||||
max-width: 80vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 280px) {
|
||||
body {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#title {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#titleLinks {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#everythingHelper {
|
||||
max-width: 90vw;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>Adrian Victor</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<header>
|
||||
<h1 id="title">Zephyrus</h1>
|
||||
<ul id="titleLinks"><a href="https://git.disroot.org/adrianvictor/zephyrus">source-code</a><a href="license.txt">license (3-Clause BSD License)</a></ul>
|
||||
</header>
|
||||
<main>
|
||||
<h2>It's running!</h2>
|
||||
<p>If you're seeing this when accessing your server's root, default page is enabled.</p>
|
||||
<p>Drop your files at ./www (It's the default root, but you can change in the config)</p>
|
||||
<p>Directory listing is enabled by default, you may want to change it.</p>
|
||||
<p>Configure your server in config.json.</p>
|
||||
</main>
|
||||
<footer>
|
||||
<p><a href="https://git.disroot.org/adrianvictor/">Adrian Victor.</a></p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue