This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
69 lines (69 loc) · 2.44 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<!-- Keep meta at the top. -->
<meta charset="utf-8">
<!-- Force IE 8/9/10 to render in the highest available mode. -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Coming Soon</title>
<meta name="description" content="This site is coming soon.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Comfortaa:300" rel="stylesheet">
<style>
body {
background-color: #fefefe;
margin: 0;
font-family: "Helvetica Neue", sans-serif;
font-size: 1.1rem;
line-height: 1.5;
color: #212529;
text-align: left;
}
#browser-notice {
background: #2C5697;
color: white;
text-align: center;
width: 100%;
margin: 0;
padding: 1rem 0;
z-index: 1;
position: fixed;
bottom: 0;
height: 3rem
}
#browser-notice a { color: #FFFF8D; }
main {
height: 100vh;
display: flex;
justify-content: center; /* align horizontal */
align-items: center; /* align vertical */
}
svg { width: 70%; max-width: 1080px; }
</style>
</head>
<body>
<!-- IE 9 was the last version to support conditional comments -->
<!-- http://stackoverflow.com/a/34331225 -->
<!--[if lte IE 9]><p id="browser-notice">You are using an outdated browser. <a href="https://browsehappy.com/">Upgrade</a> to improve your web experience and security.</p><![endif]-->
<main>
<svg xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="coming-soon-logo"
version="1.1"
viewBox="0 0 134.9 13.1">
<g transform="translate(-63.3,-76.9)" id="letters">
<text id="coming-soon-text" style="font-size:16.3px;font-family:Comfortaa;fill:#2c5697" xml:space="preserve">
<tspan style="font-family:Comfortaa;fill:#2c5697" y="89.8" x="62.3"
id="tspan1">C<tspan id="tspan2" style="fill:#48a23f">O</tspan>MING SOON</tspan>
</text>
</g>
<g transform="translate(-17.3,-14.4)" style="display:inline" id="clock">
<path
id="clock-path"
d="m 36.3,17.5 2e-6,3.2 3.1,3.2"
style="fill:none;stroke:#48a23f;stroke-width:1.1;stroke-linecap:round" />
</g>
</svg>
</main>
</body>
</html>