Add Illya

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-07-03 21:24:32 +02:00
parent 766c9e3b66
commit 1bb0f98d53
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
3 changed files with 66 additions and 0 deletions

27
illya/illya.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>froth.zone Nameserver</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="shortcut icon" href="img/illyafishe.png" />
<link rel="stylesheet" href="theme.css" />
</head>
<body>
<img alt="Illya" src="img/illya.jpg" />
<br />
<br />
<footer>
<small>
<a href="https://git.froth.zone/sam/nameservers">
Source for the HTML/CSS
</a>
<small>
<br />Contact <a href="https://froth.zone/sam">Sam</a> if you want to
use this nameserver as your own.
</small>
</small>
</footer>
</body>
</html>

BIN
illya/img/illya.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

39
illya/theme.css Normal file
View File

@ -0,0 +1,39 @@
body {
background-color: #000000;
color: rgba(255, 255, 255, 1);
max-width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
max-height: 80%;
margin: auto;
}
/* For mobile phones: */
img {
max-width: 20em;
}
@media only screen and (min-width: 1300px) {
/* For desktop: */
img {
max-width: 50%;
}
}
a {
color: rgba(200, 200, 200, 0.8);
}
a:hover {
color: rgba(200, 200, 200, 1);
}