-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 1.67 KB
/
index.html
File metadata and controls
65 lines (64 loc) · 1.67 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Site Under Maintenance</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #fff;
color: #333;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
color-scheme: light;
}
h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
margin-bottom: 1rem;
color: #222;
}
p {
font-size: clamp(1rem, 3vw, 1.25rem);
max-width: 600px;
line-height: 1.6;
margin-bottom: 2rem;
color: #555;
}
.loader {
max-width: 100%;
height: auto;
width: clamp(120px, 25vw, 30rem);
margin-bottom: 1.5rem;
max-height: 200px;
object-fit: contain;
}
@media (max-width: 480px) {
body {
padding: 10px;
}
img {
width: 80vw !important;
}
}
</style>
</head>
<body>
<img src="website-logo-BG-LESS.png" alt="Loading" class="loader" />
<img src="sample.jpg" alt="Loading" class="loader" />
<h1>Under Maintenance</h1>
<p>We're upgrading our site. Back online shortly—thanks for waiting!</p>
<p><small>Expected: Soon</small></p>
</body>
</html>