dotfiles/server/index.html
2025-02-28 11:41:18 +01:00

95 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>πCloud</title>
<style>
body, html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: sans-serif;
}
.title {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
}
.content {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-image: url( '/background.jpg' );
background-size: cover;
background-repeat: no-repeat;
}
.main {
background-color: rgba(255, 255, 255, 0.747);
padding: 5%;
border-radius: 70px;
}
.actions {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.action {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 0.5%;
border-radius: 500px;
text-decoration: none;
color: black;
transition: all 1s;
width: 50vw;
height: 7vh;
border: black 3px solid;
}
.action:hover {
background-color: lightblue;
}
.title {
font-size: 150%;
margin-bottom: 2%;
}
@media only screen and (min-width: 999px) {
.action {
width: 25vw;
height: 10vh;
}
}
</style>
</head>
<body>
<div class="content">
<div class="main">
<div class="title">
<h1>πCloud</h1>
<p>Willkommen!</p>
</div>
<div class="actions">
<a href="https://nc.picloud.janishutz.com" class="action">NextCloud</a>
<a href="https://ha.picloud.janishutz.com" class="action">HomeAssistant</a>
<a href="https://jellyfin.picloud.janishutz.com" class="action">Jellyfin</a>
</div>
</div>
</div>
</body>
</html>