cephii.com/index.html

118 lines
3.5 KiB
HTML
Raw Normal View History

2024-11-17 12:42:35 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>cephii.com</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#grid {
display: grid;
grid-template-columns: 2vw auto 2vw;
}
#main {
display: flex;
flex-flow: row nowrap;
}
2024-11-17 12:42:35 -05:00
#services {
display: flex;
flex-flow: column;
justify-content: center;
ul li a img {
height: 10rem;
width: 100%;
object-fit: fill;
2024-11-17 12:42:35 -05:00
}
}
@media (max-width: 600px) {
#grid {
grid-template-columns: auto;
}
#main {
flex-flow: column-reverse nowrap;
2024-11-19 00:08:29 -05:00
article {
padding: 0 2vw;
}
}
2024-11-17 12:42:35 -05:00
#services {
flex-flow: row wrap;
justify-content: center;
ul {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
2024-11-17 12:42:35 -05:00
li {
display: inline;
flex: 1;
a img {
height: 5rem;
width: 50vw;
2024-11-17 12:42:35 -05:00
}
}
}
}
/*section {
2024-11-17 12:42:35 -05:00
flex-flow: column-reverse;
}*/
2024-11-17 12:42:35 -05:00
nav {
justify-content: space-around;
}
}
</style>
</head>
<body style="margin: 0;">
<header>
<h1>cephii.com</h1>
</header>
<section style="display: flex; background-color: lightblue;">
<nav style="flex: 1; padding: 0 2vw; display: flex; flex-flow: row wrap;">
<a style="padding: 0.2rem 1rem;" href="#">Home</a>
<a style="padding: 0.2rem 1rem;" href="#">Blog</a>
<a style="padding: 0.2rem 1rem;" href="#">About Me</a>
</nav>
</section>
<section id="grid">
<div></div>
<section id="main">
<article style="flex: 3;">
<h1>Welcome!</h1>
<p>Here you'll find a list of my services as well as a homepage for any information you might need.</p>
<p>You can hit About Me to see more information about myself and my projects.</p>
<p>As for the services on the left, you can find some more information below:</p>
<h2>Authentik</h2>
<p>The Single Sign-On service of choice for <a href="https://cephii.com">cephii.com</a>
which allows only a single username and password access to all of the services on the right (with permission).</p>
<p>If you don't already have an Authentik account, but you do know of this website, then I simply forgot to send you an invite. Sorry!</p>
<h2>Jellyfin</h2>
<p>Jellyfin is a streaming service for all of my archives shows, movies, and songs.</p>
<h2>Nextcloud</h2>
<p>Nextcloud is a cloud storage service which I use as my drop-in replacement for Google Drive.</p>
<p>Want to get away from Google's prying eyes? Look no further!</p>
<h2>Gitea</h2>
<p>Gitea is my personal Git repository service. This will host repositories for my server as well as this very website!</p>
<p>Want to get away from Microsoft's prying eyes? Then try hosting your upstreams here as well!</p>
</article>
<nav id="services" style="flex: 1;">
<h1 style="font-size: xx-large; text-align: center; margin: 1rem 0;">Services</h1>
<ul style="list-style-type: none; padding: 0 0 0 0;">
<li><a href="https://sso.cephii.com"><img src="services/authentik.svg"></img></a></li>
<li><a href="https://stream.cephii.com"><img src="services/jellyfin.svg" style="background-color: #000b25;"></img></a></li>
<li><a href="https://cloud.cephii.com"><img src="services/nextcloud.svg"></img></a></li>
<li><a href="https://git.cephii.com"><img src="services/gitea.svg"></img></a></li>
</ul>
</nav>
</section>
<div></div>
2024-11-17 12:42:35 -05:00
</section>
<footer>
<p style="font-size: small;">This website was made by hand with love from yours truly.</p>
</footer>
2024-11-17 12:42:35 -05:00
</body>