-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (110 loc) · 2.68 KB
/
index.html
File metadata and controls
119 lines (110 loc) · 2.68 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
<DOCTYPE html>
<html lang="ENG-US">
<style>
* {
box-sizing: border-box;
font-family: 'Courier New', monospace;
}
body {
margin: 0;
height: 100vh;
background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
color: #00ffcc;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.terminal {
text-align: center;
padding: 30px;
}
h1 {
font-size: 32px;
text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
animation: glitch 1s infinite;
}
p {
margin-top: 15px;
font-size: 18px;
opacity: 0.8;
}
.retry-btn {
margin-top: 30px;
padding: 14px 30px;
font-size: 16px;
color: #000;
background: #00ffcc;
border: none;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
transition: 0.3s ease;
}
.retry-btn:hover {
background: #00e6b8;
box-shadow: 0 0 15px #00e6b8, 0 0 30px #00e6b8;
}
@keyframes glitch {
0% {
transform: translate(0);
}
20% {
transform: translate(-1px, 1px);
}
40% {
transform: translate(-1px, -1px);
}
60% {
transform: translate(1px, 1px);
}
80% {
transform: translate(1px, -1px);
}
100% {
transform: translate(0);
}
}
.matrix-lines {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
top: 0;
left: 0;
pointer-events: none;
}
.matrix-lines::before {
content: '';
position: absolute;
top: -100%;
left: 50%;
width: 2px;
height: 200%;
background: linear-gradient(to bottom, transparent, #00ffcc, transparent);
animation: scrollDown 3s linear infinite;
opacity: 0.3;
}
@keyframes scrollDown {
0% {
top: -100%;
}
100% {
top: 100%;
}
}
</style>
<body>
<div class="matrix-lines"></div>
<div class="terminal">
<h1>!! SERVER OFFLINE !!</h1>
<p>Please open the termux and run server, for now its only way to use it but we are working to improve it</p>
<button class="retry-btn" onclick="retry()">RETRY</button>
</div>
<script>
function retry() {
location.reload();
}
</script>
</body>
</html>