-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
255 lines (226 loc) · 6.31 KB
/
index.html
File metadata and controls
255 lines (226 loc) · 6.31 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Unavailable | FileKrypt</title>
<meta name="description" content="FileKrypt is currently undergoing scheduled maintenance. We'll be back shortly.">
<link rel="icon" type="image/svg+xml" href="assets/KryptLogo.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Outfit:wght@400;600;700;800&display=swap" rel="stylesheet">
<style>
:root {
--primary: #8EB69B;
--primary-glow: rgba(142, 182, 155, 0.3);
--bg: #0d0d1a;
--card-bg: rgba(255, 255, 255, 0.03);
--text-main: #ffffff;
--text-dim: rgba(255, 255, 255, 0.6);
--text-muted: rgba(255, 255, 255, 0.3);
--font-main: 'Google Sans', 'Plus Jakarta Sans', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg);
color: var(--text-main);
font-family: var(--font-main);
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
/* Animated Background */
.bg-elements {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
animation: float 20s infinite alternate ease-in-out;
}
.orb-1 {
width: 400px;
height: 400px;
background: var(--primary);
top: -100px;
right: -100px;
animation-delay: 0s;
}
.orb-2 {
width: 300px;
height: 300px;
background: #4a6fa5;
bottom: -50px;
left: -50px;
animation-delay: -5s;
}
.grid {
position: absolute;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
mask-image: radial-gradient(circle at center, black, transparent 80%);
}
@keyframes float {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(30px, 50px) scale(1.1); }
}
/* Main Content */
.container {
max-width: 600px;
width: 90%;
text-align: center;
padding: 40px;
background: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 40px;
backdrop-filter: blur(20px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
position: relative;
z-index: 1;
}
.logo-container {
margin-bottom: 32px;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.logo-img {
width: 80px;
height: 80px;
filter: drop-shadow(0 0 15px var(--primary-glow));
animation: pulse 4s infinite ease-in-out;
}
.logo-text {
font-family: var(--font-main);
font-size: 32px;
font-weight: 800;
letter-spacing: -1px;
}
.logo-accent {
color: var(--primary);
}
h1 {
font-size: 42px;
font-weight: 800;
letter-spacing: -1.5px;
margin-bottom: 16px;
background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
font-size: 18px;
color: var(--text-dim);
line-height: 1.6;
margin-bottom: 32px;
}
.status-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 100px;
font-size: 14px;
font-weight: 700;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 24px;
}
.status-dot {
width: 8px;
height: 8px;
background: var(--primary);
border-radius: 50%;
box-shadow: 0 0 10px var(--primary);
animation: blink 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.8; }
}
@keyframes blink {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.8); }
}
.footer {
margin-top: 40px;
font-size: 13px;
color: var(--text-muted);
letter-spacing: 0.5px;
}
.social-links {
margin-top: 24px;
display: flex;
justify-content: center;
gap: 20px;
}
.social-link {
color: var(--text-dim);
transition: color 0.3s ease;
text-decoration: none;
}
.social-link:hover {
color: var(--primary);
}
@media (max-width: 480px) {
h1 { font-size: 32px; }
p { font-size: 16px; }
.container {
padding: 32px 20px;
transform: translateY(-40px);
}
}
</style>
</head>
<body>
<div class="bg-elements">
<div class="grid"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
</div>
<div class="container">
<div class="logo-container">
<img src="assets/KryptLogo.svg" alt="FileKrypt Logo" class="logo-img">
<div class="logo-text">File<span class="logo-accent">Krypt</span></div>
</div>
<div class="status-badge">
<div class="status-dot"></div>
System Maintenance
</div>
<h1>Currently Out of Service</h1>
<p>
FileKrypt is temporarily offline for scheduled maintenance. We're working on making your file encryption experience even more secure and seamless.
</p>
<div class="footer">
We apologize for the inconvenience. We'll be back online shortly.
</div>
<div class="social-links">
<a href="https://github.com/Codilosopher" class="social-link" target="_blank">GitHub</a>
<a href="mailto:codilosopher48@gmail.com" class="social-link">Contact Support</a>
</div>
</div>
</body>
</html>