-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail.html
More file actions
72 lines (59 loc) · 1.44 KB
/
email.html
File metadata and controls
72 lines (59 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=Km2zX7mBpP" color="#008eda">
<link rel="shortcut icon" href="/favicon.ico">
<title>SkyLinesCondor</title>
<style>
html, body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
}
.box {
max-width: 400px;
padding: 60px 30px;
}
.heading {
display: flex;
align-items: center;
justify-content: center;
}
.logo {
height: 55px;
margin-right: 15px;
}
h1 {
margin: 0;
font-size: 40px;
}
p {
line-height: 28px;
font-size: 20px;
}
@media (min-width: 768px) {
body {
align-items: center;
min-height: 100vh;
}
}
</style>
</head>
<body>
<div class="box">
<div class="heading">
<img src="https://skylinescondor.com/logoSkylinesCondor.svg" alt="SkyLines logo" class="logo">
<img src="https://skylinescondor.com/teamlong.pnc" alt="SkyLines logo" class="logo">
<h1>SkyLines</h1>
</div>
<p>We are currently working on the server. Please try again in a few minutes!</p>
</div>
</body>
</html>