-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
136 lines (122 loc) · 4.06 KB
/
Copy path404.html
File metadata and controls
136 lines (122 loc) · 4.06 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="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erreur 404 - RoBo_Go</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link href="style.css" rel="stylesheet" type="text/css" media="all">
<link rel="stylesheet" href="https://unpkg.com/7.css">
<style>
body {
margin: 0;
font-family: "Segoe UI", sans-serif;
background: url("windows7.webp") no-repeat center center fixed;
background-size: cover;
color: #fff;
}
/* --- Fenêtre sombre et translucide --- */
.window.dark {
background: rgba(20, 20, 20, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
border-radius: 8px;
backdrop-filter: blur(8px); /* effet de flou Windows 7 */
-webkit-backdrop-filter: blur(8px);
box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.window.dark .title-bar {
background: linear-gradient(rgba(80, 80, 80, 0.8), rgba(30, 30, 30, 0.8));
color: #fff;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px 8px 0 0;
text-shadow: none;
}
.window.dark .title-bar-text {
color: #fff;
text-shadow: none;
}
.window.dark .window-body {
background: rgba(35, 35, 35, 0.6);
border-radius: 0 0 8px 8px;
color: #fff;
padding: 20px;
}
h2, p {
color: #fff;
}
/* Bouton style Windows 7 */
.win7-button {
font-family: "Segoe UI", sans-serif;
font-size: 14px;
padding: 6px 16px;
border: 1px solid #ccc;
border-radius: 3px;
background: linear-gradient(to bottom, #f0f0f0, #dcdcdc);
box-shadow: inset 0 1px 0 #fff;
color: #000;
cursor: pointer;
transition: 0.15s;
}
.win7-button:hover {
background: linear-gradient(to bottom, #e4e4e4, #c8c8c8);
}
.win7-button:active {
background: linear-gradient(to bottom, #c8c8c8, #e4e4e4);
}
</style>
</head>
<body>
<main class="container">
<div class="card">
<div class="header-inner">
<h1 style="user-select: none;">RoBo_Go</h1>
</div>
<!-- Barre de navigation -->
<nav class="topbar">
<ul class="links">
<li>
<a href="https://robo-go.github.io">
<img src="Home.png" alt="Home icon" draggable="false" class="link-icon"> Accueil
</a>
</li>
<li>
<a href="https://robo-go.github.io/jeux">
<img src="games.ico" alt="Game icon" draggable="false" class="link-icon"> Jeux
</a>
</li>
<li>
<a href="https://robo-go.github.io/about">
<img src="i.ico" alt="Info icon" draggable="false" class="link-icon"> À propos
</a>
</li>
</ul>
</nav>
<div class="card-body">
<div class="window dark active" style="max-width: 500px; margin: 80px auto;">
<div class="title-bar">
<div class="title-bar-text">Erreur 404</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<h2>erreur 404</h2>
<p>La page n'a pas été trouvée</p>
<div style="text-align: right; margin-top: 20px;">
<a href="https://robo-go.github.io">
<button class="win7-button"> Retour à l’accueil</button>
</a>
</div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>