-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
maintenance.html
52 lines (52 loc) · 1.49 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" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="theme-color" content="#000" />
<title>Chickens Attack Helicopters</title>
<style>
html, body {
margin: 0;
padding: 0;
/* background-color: #000; */
color: #fff;
width: 100%;
position: fixed;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
background-color: #000;
background-image: url('cah.png');
background-size: cover;
background-repeat: no-repeat;
}
main {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -60%);
}
p, small {
display: block;
margin: auto;
text-align: center;
padding: 20px;
}
p:first-of-type {
font-size: 4em;
}
p:nth-of-type(2) {
font-size: 2em;
}
</style>
</head>
<body>
<main>
<p>Chickens Attack Helicopters</p>
<p>Seems like something is broken. Try again later.</p>
<small>This site is not affiliated or related with cardsagainsthumanity.com</small>
</main>
</body>
</html>