-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
293 lines (255 loc) · 8.86 KB
/
404.html
File metadata and controls
293 lines (255 loc) · 8.86 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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - הדף לא נמצא</title>
<link rel="icon" href="images/logo.png" type="image/png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
background: url('images/background.jpg') center center / cover no-repeat fixed;
min-height: 100vh;
line-height: 1.6;
color: #2c3e50;
position: relative;
display: flex;
flex-direction: column;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
z-index: 0;
pointer-events: none;
}
.top-header {
position: fixed;
top: 0;
right: 0;
left: 0;
height: 70px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
padding: 0 2rem;
z-index: 1000;
}
.site-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: #1a1a1a;
font-size: 1.3rem;
font-weight: 600;
transition: all 0.3s ease;
}
.site-logo:hover {
color: #667eea;
}
.site-logo img {
width: 40px;
height: 40px;
}
.container {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
padding: 2rem;
margin-top: 70px;
}
.error-content {
text-align: center;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 24px;
padding: 3rem 4rem;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
max-width: 1000px;
width: 100%;
}
.error-header {
display: flex;
align-items: center;
justify-content: center;
gap: 3rem;
margin-bottom: 2rem;
}
.error-icon {
width: 100px;
height: 100px;
stroke: url(#gradient);
}
.error-icon-gradient {
--color-stop-1: #667eea;
--color-stop-2: #764ba2;
}
.error-code {
font-size: 7rem;
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
}
.error-title {
font-size: 2rem;
color: #2c3e50;
margin-bottom: 1rem;
font-weight: 600;
}
.error-message {
font-size: 1.1rem;
color: #7f8c8d;
margin-bottom: 2.5rem;
line-height: 1.8;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.action-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 1rem 2rem;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: white;
color: #667eea;
border: 2px solid #667eea;
}
.btn-secondary:hover {
background: #667eea;
color: white;
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}
@media (max-width: 768px) {
.top-header {
padding: 0 1rem;
}
.site-logo {
font-size: 1.1rem;
}
.site-logo img {
width: 32px;
height: 32px;
}
.error-content {
padding: 2rem 1.5rem;
}
.error-header {
flex-direction: column;
gap: 1.5rem;
}
.error-icon {
width: 80px;
height: 80px;
}
.error-code {
font-size: 5rem;
}
.error-title {
font-size: 1.8rem;
}
.error-message {
font-size: 1rem;
}
.action-buttons {
flex-direction: column;
}
.btn {
width: 100%;
justify-content: center;
}
}
</style>
</head>
<body>
<div class="top-header">
<a href="index.html" class="site-logo">
<img src="images/logo.png" alt="לוגו האתר">
מדריכי תכנות
</a>
</div>
<div class="container">
<div class="error-content">
<div class="error-header">
<svg class="error-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
</linearGradient>
</defs>
<path
d="M21 21L15 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z"
stroke="url(#gradient)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<div class="error-code">404</div>
</div>
<h1 class="error-title">הדף לא נמצא</h1>
<p class="error-message">
מצטערים, הדף שחיפשת לא קיים או הועבר למקום אחר.
אולי הקישור שגוי או שהדף הוסר מהאתר.
</p>
<div class="action-buttons">
<a href="index.html" class="btn btn-primary">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3 9L12 2L21 9V20C21 20.5304 20.7893 21.0391 20.4142 21.4142C20.0391 21.7893 19.5304 22 19 22H5C4.46957 22 3.96086 21.7893 3.58579 21.4142C3.21071 21.0391 3 20.5304 3 20V9Z"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
חזרה לדף הבית
</a>
<a href="search.html" class="btn btn-secondary">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M21 21L15 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
חיפוש באתר
</a>
</div>
</div>
</div>
</body>
</html>