-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
120 lines (116 loc) · 4.07 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Under Construction</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400" rel="stylesheet">
<style media="screen" type="text/css">
html {
height:100%;
}
body {
color: #fff;
margin: 0;
font-family: 'Montserrat', sans-serif;
font-style: normal;
font-size: 14px;
line-height: 22px;
height: 100%;
background-color: #fff;
}
h1 {
margin-top: 20px;
font-size: 50px;
opacity: 1;
}
@media all and (max-width: 980px) {
h1 {
font-size: 35px;
}
.under-construction p {
font-size: 20px;
}
}
@media all and (max-width: 767px) {
h1 {
font-size: 28px;
}
.under-construction p {
font-size: 16px;
}
}
h2 {
font-style: normal;
font-size: 14px;
line-height: 22px;
margin: 0;
}
.wrap {
height: auto;
min-height: 100%;
background-color: #3B4251;
}
.domain {
position: absolute;
text-align: center;
width: 100%;
margin-left: -50%;
top: 42.5%;
left: 50%;
}
.footer {
text-align: center;
color:#DCDCDC;
margin:auto;
padding:15px 20px 18px 20px;
position:relative;
clear:both;
height:40px;
margin-top:-73px;
background-color:#444;
font-size: 12px;
line-height: 22px;
}
p {
margin: 0;
}
.footer a {
color:#DCDCDC;
}
p.description {
padding-top: 10px;
font-size: 18px;
}
.avoori-logo {
margin: 20px;
max-width: 40px;
}
.under-construction {
position: absolute;
text-align: center;
width: 100%;
bottom: 5%;
font-size: 24px;
line-height: 1;
font-weight: 300;
}
img {
filter: brightness(0) invert(1);
}
</style>
</head>
<body>
<div class="wrap">
<a href="https://avoori.com/"><img class="avoori-logo" src="https://avoori.com/wp-content/themes/avooritheme/assets/img/favicon.png" alt="avoori.com logo"></a>
<div class="domain">
<h1 id="site_domain">mydomain.com</h1>
</div>
<div class="under-construction">
<p>We're just getting ready, check back soon.</p>
</div>
</div>
<script>
document.getElementById("site_domain").innerHTML = window.location.hostname;
</script>
</body>
</html>