Upload from GitHub
This commit is contained in:
BIN
server/background.jpg
Normal file
BIN
server/background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 209 KiB |
95
server/index.html
Normal file
95
server/index.html
Normal file
@@ -0,0 +1,95 @@
|
||||
<!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>
|
Reference in New Issue
Block a user