-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path503.html
More file actions
66 lines (59 loc) · 1.96 KB
/
503.html
File metadata and controls
66 lines (59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>503 - Maintenance Mode</title>
<!-- Link to Google Icons CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
body {
background-color: #2ecc71; /* Green background color */
text-align: center;
font-family: Arial, sans-serif;
}
.container {
margin: 100px auto;
padding: 20px;
background-color: #ffffff; /* White container background color */
border-radius: 5px;
}
h1 {
color: #2ecc71; /* Green text color */
}
p {
color: #333; /* Dark text color */
}
.icon {
font-size: 100px;
color: #2ecc71; /* Green icon color */
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #2ecc71; /* Green button background color */
color: #fff; /* White button text color */
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
cursor: pointer; /* Add cursor pointer for better UX */
}
.button:hover {
background-color: #27ae60; /* Darker green on hover */
}
</style>
</head>
<body>
<div class="container">
<i class="material-icons icon">build</i> <!-- Changed the icon to "build" for maintenance mode -->
<h1>503 - Maintenance Mode</h1>
<p>We're currently undergoing maintenance. Please check back later.</p>
<a href="#" class="button" onclick="refreshPage()">Refresh Page</a>
</div>
<script>
function refreshPage() {
location.reload();
}
</script>
</body>
</html>