-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (80 loc) · 1.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Under Construction</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #292929;
background-image: url(https://images.cimiterium.eu/pexels-felixmittermeier-956999.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: rgba(255, 255, 255, 0.8);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
height: 100%;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
padding: 0 1rem;
height: 100vh;
}
header {
width: 100%;
flex-grow: 1;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.emoji {
font-size: 2rem;
margin-bottom: 1rem;
}
h1 {
white-space: nowrap;
display: inline-block;
line-height: 1;
font-weight: 800;
}
footer {
margin-bottom: 2rem;
font-size: 0.95rem;
letter-spacing: 1px;
}
p {
line-height: 1.625;
}
</style>
</head>
<body>
<div class="container">
<header class="block">
<div>
<h1><span id="site_domain">Website is under construction</span></h1>
</div>
</header>
<footer>
<p>We’re under construction. Please check back for an update soon.</p>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fitty/2.3.2/fitty.min.js"></script>
<script>
var url = window.location.hostname;
var site_domain = document.querySelector('#site_domain');
site_domain.innerHTML = url;
fitty('h1');
</script>
</body>
</html>