61 lines
937 B
CSS
61 lines
937 B
CSS
* {
|
|
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;
|
|
} |