-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Maintenance</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
font-family: 'Roboto Mono', monospace;
background: #121212;
color: #e0e0e0;
text-align: center;
overflow: hidden;
}
.container {
max-width: 600px;
padding: 2rem;
border-radius: 12px;
background: rgba(20, 20, 20, 0.9);
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.7);
}
h1 {
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 1rem;
font-weight: 700;
overflow: hidden;
border-right: 3px solid #ffffff;
white-space: nowrap;
width: fit-content;
animation: typing 3s steps(30, end), blink 0.6s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink {
from, to { border-color: transparent; }
50% { border-color: #ffffff; }
}
.scrolling-text-container {
display: flex;
overflow: hidden;
white-space: nowrap;
font-size: 1.2rem;
color: #bbbbbb;
font-weight: 400;
margin-top: 1rem;
}
.scrolling-text {
display: inline-block;
padding-left: 100%;
animation: scroll 10s linear infinite;
}
@keyframes scroll {
from { transform: translateX(100%); }
to { transform: translateX(-100%); }
}
</style>
</head>
<body>
<div class="container">
<h1>Under Maintenance</h1>
<div class="scrolling-text-container">
<span class="scrolling-text">We're working on an amazing new experience. Please check back soon! </span>
</div>
</div>
</body>
</html>