-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
79 lines (79 loc) · 3.83 KB
/
Copy path404.html
File metadata and controls
79 lines (79 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page not found — ResonLab</title>
<meta name="robots" content="noindex" />
<link rel="icon" href="logos/resonlab.svg" type="image/svg+xml" />
<script>
(function () {
try {
var choix = localStorage.getItem('resonlab-theme')
if (choix) document.documentElement.setAttribute('data-theme', choix)
} catch (e) { /* private browsing: follow the system setting */ }
})()
</script>
<style>
:root {
--bg: #0c0b10; --card: #16151d; --border: rgba(255,255,255,.09);
--fg: #f1eff5; --fg-dim: #9d97ab;
--grad: linear-gradient(120deg, #1BE7B6, #FFB648, #8B5CF6);
--radius: 4px; --ease: cubic-bezier(.16, 1, .3, 1);
}
@media (prefers-color-scheme: light) {
:root:not([data-theme]) { --bg: #f7f6fa; --card: #ffffff; --border: rgba(17,13,26,.12); --fg: #16121f; --fg-dim: #544d66; }
}
:root[data-theme="clair"] { --bg: #f7f6fa; --card: #ffffff; --border: rgba(17,13,26,.12); --fg: #16121f; --fg-dim: #544d66; }
* { box-sizing: border-box; }
body {
margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center;
background: var(--bg); color: var(--fg);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
text-align: center; padding: 24px;
}
.carte { max-width: 30rem; }
.brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 40px; }
.brand img { display: block; }
.brand span { font-weight: 600; font-size: 19px; letter-spacing: -.01em; color: var(--fg); }
h1 { font-size: 15px; font-weight: 600; letter-spacing: .14em; color: var(--fg-dim); margin: 0 0 6px; }
p.grand { font-size: 74px; font-weight: 700; line-height: 1; margin: 0 0 18px; letter-spacing: -.03em; }
p.texte { color: var(--fg-dim); font-size: 16px; line-height: 1.6; margin: 0 0 32px; }
.actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
a.btn {
display: inline-flex; align-items: center; justify-content: center;
padding: 12px 20px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
text-decoration: none; transition: filter .3s var(--ease);
}
a.btn.plein { background: var(--grad); color: #120b22; }
a.btn.discret { background: transparent; color: var(--fg); border: 1px solid var(--border); }
a.btn:hover { filter: brightness(1.08); }
.famille { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); }
.famille a { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--fg-dim); font-size: 12px; }
.famille img { width: 26px; height: 26px; }
.famille a:hover { color: var(--fg); }
</style>
</head>
<body>
<div class="carte">
<a class="brand" href="./">
<img src="logos/resonlab.svg" alt="" width="30" height="30" />
<span>ResonLab</span>
</a>
<h1>404 — PAGE NOT FOUND</h1>
<p class="grand">Nothing here.</p>
<p class="texte">The page you're looking for doesn't exist, or has moved.</p>
<div class="actions">
<a class="btn plein" href="./">Back home</a>
<a class="btn discret" href="en/download.html">Download</a>
</div>
<div class="famille">
<a href="https://resonlab.github.io/ohmnia/en/"><img src="logos/ohmnia.svg" alt="" />Ohmnia</a>
<a href="https://resonlab.github.io/scenika/en/"><img src="logos/scenika.svg" alt="" />Scenika</a>
<a href="https://resonlab.github.io/acustika/en/"><img src="logos/acustika.svg" alt="" />Acustika</a>
<a href="https://resonlab.github.io/lumika/en/"><img src="logos/lumika.svg" alt="" />Lumika</a>
<a href="https://resonlab.github.io/nexika/en/"><img src="logos/nexika.svg" alt="" />Nexika</a>
</div>
</div>
</body>
</html>