-
Notifications
You must be signed in to change notification settings - Fork 0
/
offline.html
54 lines (47 loc) · 1.24 KB
/
offline.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
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0" />
<style>
html {
background-color: #000;
color: #ccc;
}
body {
margin: 10px;
padding: 0;
}
.text-container {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
font-size: 1.5em;
line-height: 1.5em;
font-family: Courier;
}
.cursor {
animation-name: blink;
animation-duration: 0.5s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes blink {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<title>OFFLINE</title>
</head>
<body>
<div class="text-container">
This website is currently offline. <br/> Please visit back later.<span class="cursor">_</span>
</div>
</body>
</html>