-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
84 lines (77 loc) · 2.11 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
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Maintenance</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
text-align: center;
background-color: #f2f2f2;
}
h1, h2, h4 {
padding: 0;
margin: 0;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.message {
margin-top: 20px;
font-size: 24px;
color: #333333;
position: relative;
}
.error-code{
font-size: 100px;
font-weight: bold;
color: #a9a9a9;
position: relative;
}
.error-code::after {
content: '';
position: absolute;
top: 15%;
left: 110%;
height: 70%;
width: 5px;
background-color: #a9a9a9;
animation: blink 1s infinite;
}
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
}
.subtitle {
margin-top: 10px;
font-size: 18px;
color: #666666;
}
h4{
font-size: 24px;
font-weight: normal;
color: #777777;
letter-spacing: 2px;
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">503</div>
<h4> Under Maintenance </h4>
<div class="message">
<p class="subtitle">Apologies for the inconvenience, this page is currently undergoing maintenance.</p>
</div>
</div>
</body>
</html>