Added home folder

This commit is contained in:
2025-06-25 17:12:14 +02:00
parent 0d068c120a
commit f6e558d333
4 changed files with 135 additions and 0 deletions

61
home/home.css Normal file
View File

@@ -0,0 +1,61 @@
* {
margin: 0;
padding: 0;
}
body {
overflow: hidden;
background-color: #001A33;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
#container {
top: 50%;
left: 50%;
width: 500px;
position: fixed;
max-width: 100%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#ef-logo, #elias-fink-logo {
margin: 0 auto;
display: block;
}
#ef-logo {
width: 35%;
}
#elias-fink-logo {
width: 80%;
margin-top: 14%;
margin-bottom: 5%;
}
#email, #legal {
bottom: 5px;
position: fixed;
}
#email {
left: 5px;
}
#legal {
right: 5px;
}
#email a, #legal a {
font-size: 14px;
text-decoration: none;
color: rgba(255, 255, 255, 0.5);
}
#email a:hover, #legal a:hover {
color: #fff;
}