-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
76 lines (67 loc) · 2.58 KB
/
404.html
File metadata and controls
76 lines (67 loc) · 2.58 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
<html>
<head>
<meta name="darkreader-lock">
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/favicon.png">
<style>
@font-face {
font-family: "Lucida Grande";
src: local("Lucida Grande"),
url("/assets/lucida-grande.woff2") format("woff2");
font-display: swap;
}
html,
body {
height: 100%;
overflow: hidden;
}
body {
color: white;
background-color: #AFAFBC;
font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif;
font-size: 1.3em;
display: table;
width: 100%;
}
.wrapper {
vertical-align: middle;
height: 100%;
width: 100%;
display: table-cell;
}
.content {
background-image: url("/assets/404.png");
background-repeat: no-repeat;
background-size: 733px 400px;
width: 733px;
height: 400px;
background-color: #222222;
margin: 0 auto;
}
.content>.text-wrapper {
padding-left: 3.5em;
padding-right: 3.5em;
padding-top: .5em;
padding-bottom: .5em;
}
</style>
<title>404 - Not Found</title>
</head>
<body>
<div class="wrapper">
<div class="content">
<div class="text-wrapper">
<p>You need to restart your computer. Hold down the Power button for several seconds or press the
Restart button.</p>
<p>Vous devez redémarrer votre ordinateur. Maintenez le bouton d'alimentation pendant plusieurs
secondes ou appuyez sur le bouton Redémarrer.</p>
<p>Sie müssen Ihren Computer neu starten. Halten Sie die Power-Taste für einige Sekunden oder
drücken Sie die Schaltfläche Neu starten.</p>
<p>コンピュータを再起動する必要があります。数秒間電源ボタンを押したまま、または再起動]ボタンを押してください。
</p>
</div>
</div>
</div>
</body>
</html>