Skip to content

404.md: Create Xbox Error 404 Page #166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions .github/404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
permalink: /404.html
---

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Error</title>
<style>
body {
background-color: black;
color: lime;
font-family: Arial, sans-serif;
text-align: center;
padding-top: 20%;
margin: 0;
}
.error-code {
font-size: 8vw;
position: absolute;
top: 2vw;
left: 2vw;
}
.message {
font-size: 4vw;
line-height: 1.5;
margin: 0 5vw;
}
.click-message {
font-size: 3.6vw;
margin-top: 5vw;
font-weight: bold;
}

@media (min-width: 600px) {
.error-code {
font-size: 48px;
top: 10px;
left: 10px;
}
.message {
font-size: 20px;
margin: 0 20%;
}
.click-message {
font-size: 18px;
margin-top: 20px;
}
}
</style>
</head>
<body>
<a href="https://xemu.app" style="text-decoration: none; color: lime;">
<div class="error-code">404</div>
<div class="message">
<p>Your Xbox requires service.<br>
Please call Xbox Customer Support.</p>
<p>Ihre Xbox muss gewartet werden.<br>
Bitte den Xbox-Kundendienst anrufen.</p>
<p>La consola Xbox requiere asistencia técnica.<br>
Llame al servicio de soporte al cliente de la Xbox.</p>
<p>Xbox ha bisogno di manutenzione.<br>
Chiamare l'assistenza Clienti di Xbox.</p>
<p>Votre Xbox ne fonctionne pas correctement.<br>
Veuillez contacter le Support à la clientèle Xbox.</p>
<p>不具合が生じました。お手数ですが、<br>
Xbox カスタマー サポートにお問い合わせください。</p>
</div>
<div class="click-message">
Click anywhere to return to xemu
</div>
</a>
</body>
</html>