-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
136 lines (119 loc) · 3.49 KB
/
404.html
File metadata and controls
136 lines (119 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 | HouseLearning</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<script src="https://houselearning.org/cookiebanner.js"
<style>
:root {
--hl-primary: #10b981;
--hl-dark: #0f172a;
--hl-bg: #f8fafc;
--text-muted: #64748b;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--hl-bg);
color: var(--hl-dark);
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.error-container {
padding: 2rem;
max-width: 500px;
}
.error-code {
font-size: 8rem;
font-weight: 800;
margin: 0;
line-height: 1;
color: var(--hl-primary);
opacity: 0.2;
position: absolute;
left: 50%;
top: 45%;
transform: translate(-50%, -50%);
z-index: -1;
}
.brand-logo {
background: var(--hl-primary);
color: white;
width: 50px;
height: 50px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
margin: 0 auto 1.5rem;
box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
font-weight: 700;
}
p {
color: var(--text-muted);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2.5rem;
}
.button-group {
display: flex;
gap: 12px;
justify-content: center;
}
.btn {
padding: 0.8rem 1.5rem;
border-radius: 10px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
font-size: 0.95rem;
}
.btn-primary {
background-color: var(--hl-primary);
color: white;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
background-color: #059669;
transform: translateY(-2px);
}
.btn-secondary {
background-color: white;
color: var(--hl-dark);
border: 1px solid #e2e8f0;
}
.btn-secondary:hover {
background-color: #f1f5f9;
}
/* Whimsical Education Touch */
.illustration {
font-size: 4rem;
margin-bottom: 1rem;
display: block;
}
</style>
</head>
<body>
<div class="error-code">404</div>
<div class="error-container">
<div class="brand-logo">HL</div>
<span class="illustration">📚</span>
<h1>Page Not Found</h1>
<p>It looks like the page you are looking for has been moved or doesn't exist.</p>
<div class="button-group">
<a href="/" class="btn btn-primary">Go to Dashboard</a>
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
</div>
</div>
</body>
</html>