-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
112 lines (103 loc) · 2.75 KB
/
404.html
File metadata and controls
112 lines (103 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>404 Not Found</title>
<style>
/* Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0d1117, #1e1e2e);
font-family: "Inter", sans-serif;
overflow: hidden;
}
/* Glassy container */
.card {
backdrop-filter: blur(12px);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem;
text-align: center;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
animation: fadeIn 1.5s ease-out;
}
/* Title */
h1 {
font-size: 5rem;
color: #ffffff;
text-shadow: 0 0 15px rgba(88, 166, 255, 0.8);
animation: pulse 3s infinite alternate;
}
p {
margin-top: 1rem;
font-size: 1.2rem;
color: #c9d1d9;
}
a {
display: inline-block;
margin-top: 2rem;
padding: 0.8rem 1.5rem;
border-radius: 12px;
background: rgba(88, 166, 255, 0.2);
color: #58a6ff;
font-weight: bold;
text-decoration: none;
transition: 0.3s ease;
}
a:hover {
background: rgba(88, 166, 255, 0.4);
color: #ffffff;
}
/* Animations */
@keyframes pulse {
from {
text-shadow: 0 0 15px rgba(88, 166, 255, 0.8);
}
to {
text-shadow: 0 0 30px rgba(88, 166, 255, 1);
}
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Floating particles */
.particle {
position: absolute;
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(88, 166, 255, 0.6);
animation: float 10s infinite linear;
}
@keyframes float {
from { transform: translateY(100vh) translateX(0); opacity: 0; }
25% { opacity: 1; }
to { transform: translateY(-20vh) translateX(50vw); opacity: 0; }
}
</style>
</head>
<body>
<!-- Floating particles -->
<div class="particle" style="left:10%; animation-delay:0s;"></div>
<div class="particle" style="left:30%; animation-delay:2s;"></div>
<div class="particle" style="left:60%; animation-delay:4s;"></div>
<div class="particle" style="left:80%; animation-delay:6s;"></div>
<!-- 404 card -->
<div class="card">
<h1>404</h1>
<p>Oops! The page you are looking for is not found on our server</p>
<a href="https://hsr-projects.github.io/hsrprojects.org">⬅ Return Home</a>
</div>
</body>
</html>