-
Notifications
You must be signed in to change notification settings - Fork 0
/
ComingSoon.html
58 lines (50 loc) · 2.41 KB
/
ComingSoon.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
<!DOCTYPE html>
<html>
<head>
<title>Coming Soon</title>
<style>
body {
background-color: #0d1117;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
font-family: monospace;
color: #da004e;
}
.ascii-art {
font-size: 24px;
}
.return-home {
margin-top: 20px;
}
.return-home a {
color: #da004e;
text-decoration: none;
display: inline-block;
padding: 10px 20px;
border: 2px solid #0d1117;
transition: border-color 0.3s ease-in-out;
}
.return-home a:hover {
border-color: #da004e;
}
</style>
</head>
<body>
<pre class="ascii-art">
░█████╗░░█████╗░███╗░░░███╗██╗███╗░░██╗░██████╗░ ░██████╗░█████╗░░█████╗░███╗░░██╗
██╔══██╗██╔══██╗████╗░████║██║████╗░██║██╔════╝░ ██╔════╝██╔══██╗██╔══██╗████╗░██║
██║░░╚═╝██║░░██║██╔████╔██║██║██╔██╗██║██║░░██╗░ ╚█████╗░██║░░██║██║░░██║██╔██╗██║
██║░░██╗██║░░██║██║╚██╔╝██║██║██║╚████║██║░░╚██╗ ░╚═══██╗██║░░██║██║░░██║██║╚████║
╚█████╔╝╚█████╔╝██║░╚═╝░██║██║██║░╚███║╚██████╔╝ ██████╔╝╚█████╔╝╚█████╔╝██║░╚███║
░╚════╝░░╚════╝░╚═╝░░░░░╚═╝╚═╝╚═╝░░╚══╝░╚═════╝░ ╚═════╝░░╚════╝░░╚════╝░╚═╝░░╚══╝
</pre>
<div class="return-home">
<a href="../home/">Return Home</a>
</div>
</body>
</html>