-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 1.51 KB
/
index.html
File metadata and controls
58 lines (53 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="color-scheme" content="light dark">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
:root {
--bg-color: #f4f4f4;
--card-bg: #ffffff;
--text-color: #222222;
--shadow: rgba(0, 0, 0, 0.1);
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #121212;
--card-bg: #1e1e1e;
--text-color: #f5f5f5;
--shadow: rgba(0, 0, 0, 0.6);
}
}
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
transition: background-color 0.3s ease, color 0.3s ease;
}
.container {
text-align: center;
padding: 40px 60px;
background-color: var(--card-bg);
border-radius: 10px;
box-shadow: 0 8px 20px var(--shadow);
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
h1 {
font-weight: normal;
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>"Nothing to see here, come back later."</h1>
</div>
</body>
</html>