nixos/nixos/hosts/seedbox/www/index.html
2025-01-07 13:41:47 -08:00

83 lines
1.6 KiB
HTML

<!DOCTYPE html>
<title>seedbox</title>
<style>
html {
background-color: #1f1515;
color: #efefef;
}
main {
margin: 0 auto;
text-align: center;
}
section {
display: flex;
justify-content: center;
align-items: center;
a {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #8a5151;
margin: 10px;
color: #efefef;
text-decoration: none;
&:hover {
background-color: #698cc0;
}
}
&.big a {
width: 150px;
height: 150px;
}
&.small a {
width: 150px;
height: 100px;
}
}
.emoji {
font-size: 60px;
}
.title {
font-weight: bold;
font-size: 1.1em;
}
</style>
<main>
<header><h1>the seedbox</h1></header>
<section class="big">
<a href="/sonarr">
<div class="emoji">📺</div>
<div class="title">Shows &amp; Anime</div>
<div>sonarr</div>
</a>
<a href="/radarr">
<div class="emoji">🎥</div>
<div class="title">Movies</div>
<div>Radarr</div>
</a>
<a href="/lidarr">
<div class="emoji">🎶</div>
<div class="title">Music</div>
<div>Lidarr</div>
</a>
</section>
<section class="small">
<a href="/prowlarr">
<div class="title">Tracker Management</div>
<div>prowlarr</div>
</a>
<a href="/transmission">
<div class="title">Torrent Client</div>
<div>transmission</div>
</a>
</section>
<footer>Username/Password: <code>foxfox</code></section>
</main>