blob: bc26525b29dbb7958f081dce41603ae5adaad00a (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<!DOCTYPE html>
<html>
<head>
<title>talha's corner</title>
</head>
<body>
<div class="text">
<div class="text-ele">
<small><b class="client">client</b> connected successfully</small><br />
<small><b class="btlr">btlr</b> analyzing... found <b>20</b> new fluctuations. Killing processes.. in
20(s)</small><br />
<b class="host">host</b> what do you seek?<br />
<small><b class="btlr">btlr</b> restarted by <b class="host">host</b></small><br />
<small><b class="btlr">btlr</b> analyzing... found <b>800</b> new fluctuations. Killing processes.. in
20(s)</small><br />
<b class="host">host</b> hurry... not much time left now.<br />
<small><b class="host">host</b> timed out... retrying in � minutes</small><br /><br />
<small>-- Emergency mode. Starting service <b class="sos">sos</b> --</small><br />
<b class="sos">sos</b> what would you like to view?</b>
<ul class="navlist">
<li><button>writings</button></li>
<li><button>experiments</button></li>
<li><button>history</button></li>
<li><button>about</button></li>
<li><a href="/locations/identities.html">online identities</a></li>
</ul>
</div>
<div class="date">
<small>2077-11-01</small>
</div>
</div>
<img class="intro-img" src="/assets/RetroFutureRoomDistorted.jpeg" />
</body>
<style>
@font-face {
font-family: fallout-terminal;
src: url('/assets/fallout-terminal-font.ttf');
}
html {
background-color: black;
font-family: fallout-terminal;
}
body {
display: flex;
flex-direction: column;
color: white;
align-items: center;
}
.text {
font-size: 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.navlist {
display: flex;
justify-content: space-between;
list-style-type: none;
padding: 0;
margin: 15px 0 15px 0;
}
.navlist button,
.navlist a {
background: black;
color: #4af626;
cursor: pointer;
font-family: fallout-terminal;
font-size: 20px;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px dashed;
text-decoration: none;
}
.intro-img {
max-width: 80%;
}
.host {
color: #32afff;
}
.btlr {
color: yellow;
}
.warn {
color: red;
}
.date {
color: #4af626;
}
.sos {
color: #75507b;
}
</html>
|