blob: 1f3edb0370d55b19dc2821aa10e0171a66a493b6 (
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
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
85
86
87
|
<head>
<meta charset="utf-8">
<style>
@import url("/glitch.css");
@font-face {
font-family: "unifont_jp";
src: url("/unifont_jp-13.0.03_custom.ttf") format("truetype");
}
html {
color: white;
background: black;
}
pre, .glitch {
font-family: 'unifont_jp', Monospace;
}
pre {
position: relative;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
margin: 0;
}
.flex-container {
height: 100%;
padding: 0;
margin: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
}
.row {
width: auto;
}
.glitch {
position: absolute;
top: 84%;
left: 34%;
background: black;
display: inline !important;
margin-top: -1px;
padding: 3px 0;
}
.about {
position: absolute;
top:0;
left: 50px;
padding: 10px;
border: 1px solid white;
background: black;
}
a {
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<p>This infrastructure host and managed by <a
href="https://neodarz.net">neodarz</a> and <a
href="https://brodokk.space">brodokk</a>.</p>
<div class="about">
<a href="/">Home</a>
</div>
</body>
|