-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintenance.html
53 lines (52 loc) · 1.39 KB
/
maintenance.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance</title>
<style>
body {
background-color: #f8f9fa;
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.container {
max-width: 600px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
color: #0d6efd;
}
p {
font-size: 18px;
color: #333;
}
.spinner {
margin: 20px auto;
width: 50px;
height: 50px;
border: 8px solid #f3f3f3;
border-top: 8px solid #0d6efd;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<h1>Site Under Maintenance</h1>
<p>We are currently performing scheduled maintenance. The site will be back online shortly.</p>
<div class="spinner"></div>
<p>Thank you for your patience.</p>
</div>
</body>
</html>