blob: 8400eb94cc16cc4265c59a8bb4b8b41bbd895e32 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Text TV - Bornhack 24 ERROR</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="10">
<style>
body {
background: black;
color: white;
background-image: url("test_pattern.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
#root-container {
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
color: white; background: #000; opacity: .9;
z-index: 1000;
}
</style>
</head>
<body>
<div id="root-container">
<h1 style="text-align: center; font-size: 5em">We'll be right back</h1>
</div>
</body>
</html>
|