-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (74 loc) · 1.96 KB
/
index.html
File metadata and controls
81 lines (74 loc) · 1.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(180deg, #f5f7fa 0%, #e9ecef 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.container {
text-align: center;
background: white;
padding: 80px 50px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
max-width: 650px;
animation: slideIn 0.6s ease-out;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
h1 {
font-size: 48px;
color: #2c3e50;
margin-bottom: 25px;
font-weight: 700;
letter-spacing: -0.8px;
}
p {
font-size: 18px;
color: #7f8c8d;
margin-bottom: 20px;
line-height: 1.7;
}
.accent {
color: #3498db;
}
.subtitle {
font-size: 14px;
color: #bdc3c7;
margin-top: 40px;
padding-top: 40px;
border-top: 2px solid #ecf0f1;
letter-spacing: 0.5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Coming <span class="accent">Soon</span></h1>
<p>This page is under construction.</p>
<p class="subtitle">Check back later</p>
</div>
</body>
</html>