-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (156 loc) · 3.27 KB
/
index.html
File metadata and controls
159 lines (156 loc) · 3.27 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<head>
<title>PitoDevID</title>
<link rel="SHORTCUT ICON" href="https://avatars.githubusercontent.com/u/74353123" type="image/png">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description" content="We turning coffee into line lines of stunning code.">
<meta name="keywords" content="PitoDev">
<meta name="author" content="Abay">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>@-webkit-keyframes cursor-blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@-moz-keyframes cursor-blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes cursor-blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
body {
background-color: black;
}
.four-oh-four {
position: relative;
top: 0;
left: 0;
min-height: 100vh;
min-width: 100vw;
z-index: 2;
background-color: black;
transition: opacity 300ms ease-out;
background-position: center center;
background-repeat: no-repeat;
}
.four-oh-four .dJAX_internal {
opacity: 0.0;
}
.four-oh-four form, .four-oh-four input {
position: fixed;
top: 0;
left: 0;
opacity: 0;
background-color: black;
}
.terminal {
position: relative;
padding: 4rem;
}
.terminal .prompt {
color: #1ff042;
display: block;
font-family: 'AndaleMono', monospace;
font-weight: bold;
text-transform: uppercase;
font-size: 0.9em;
letter-spacing: 0.15em;
white-space: pre-wrap;
text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
line-height: 1;
margin-bottom: 0.75em;
animation: txtanimation 5s ease-in-out infinite;
text-transform: uppercase;
}
@keyframes txtanimation {
0% {
transform: scale(1);
}
50% {
filter: blur(1px);
}
}
.terminal .prompt:before {
content: '> ';
display: inline-block;
}
.terminal .new-output {
display: inline-block;
}
.terminal .new-output:after {
display: inline-block;
vertical-align: -0.15em;
width: 0.75em;
height: 1em;
margin-left: 5px;
background: #1ff042;
box-shadow: 1px 1px 1px rgba(31, 240, 66, 0.65), -1px -1px 1px rgba(31, 240, 66, 0.65), 1px -1px 1px rgba(31, 240, 66, 0.65), -1px 1px 1px rgba(31, 240, 66, 0.65);
-webkit-animation: cursor-blink 1.25s steps(1) infinite;
-moz-animation: cursor-blink 1.25s steps(1) infinite;
animation: cursor-blink 1.25s steps(1) infinite;
content: '';
}
.four-oh-four-form {
opacity: 0;
position: fixed;
top: 0;
left: 0;
}
a {
color: #1ff042;
font-family: 'AndaleMono', monospace;
text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
text-decoration: none;
}
a:hover {
color: #1ff042;
font-family: 'AndaleMono', monospace;
text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
text-decoration: none;
}
pre {
color: #1ff042;
display: block;
font-family: 'AndaleMono', monospace;
font-weight: bold;
text-transform: uppercase;
font-size: 0.9em;
letter-spacing: 0.15em;
white-space: pre-wrap;
text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
line-height: 1;
margin-bottom: 0.75em;
}
pre:before {
display: inline-block;
}
</style></head><body>
<div class="container">
<div class="terminal">
<p aligin="center" class="prompt">The page you requested cannot be found right meow.</p>
</div>
</div>
</body></html>