-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 979 Bytes
/
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
<html>
<head>
<style>
.container {
margin: 0 auto;
display: inline-block;
vertical-align: middle;
width: 300px;
}
img {
width: 96px;
}
body {
text-align: center;
}
body:before {
content: '.';
display: inline-block;
height: 100%;
vertical-align: middle;
width: 0;
overflow: hidden;
}
.text {
padding-top: 24px;
font-family: monospace;
}
.under-maintenance {
font-size: 24px;
}
.contact-details {
display: block;
padding-top: 12px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<a href="https://youtu.be/BjU4aS04mQ4"><img src="logo.svg"/></a>
<div class="text">
<b class="under-maintenance">under maintenance</b>
<span class="contact-details"><b>contact us via</b>
<br/><span>info [at] linguacode [dot] me</span></span>
</div>
</div>
</body>
</html>