-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.24 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev is down</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔴</text></svg>">
<meta property="og:description" content="Is dev down again?">
<meta property=”og:image” content=”./burning-dev.webp” />
<style>
body {
background-color: rgb(0, 51, 59);
color: white;
font-family: 'Courier New', Courier, monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
font-size: 64px;
text-align: center;
}
h2 {
font-size: 150px;
animation: breathe 2s ease-in-out infinite alternate;
}
@keyframes breathe {
from {
transform: scale(1);
}
to {
transform: scale(30);
}
}
</style>
</head>
<body>
<h1>Days since last Dev downtime</h1>
<h2>0</h2>
</body>
</html>