Files
e-cosplay/public/offline.html

66 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Actuellement Indisponible</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
text-align: center;
padding: 50px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.container {
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
max-width: 600px;
width: 90%;
}
h1 {
color: #d9534f; /* Couleur d'alerte rouge */
margin-bottom: 20px;
font-size: 2em;
}
p {
font-size: 1.1em;
line-height: 1.6;
}
.icon {
font-size: 4em;
color: #d9534f;
margin-bottom: 15px;
display: block;
}
.small-text {
font-size: 0.9em;
color: #777;
margin-top: 30px;
}
</style>
</head>
<body>
<div class="container">
<span class="icon" aria-hidden="true">🛠️</span>
<h1>Site Actuellement Indisponible</h1>
<p>
Nous sommes désolés, mais le site est actuellement en **maintenance** ou rencontre un **problème technique** inattendu.
</p>
<p>
Notre équipe travaille activement pour **rétablir le service au plus vite**. Veuillez réessayer dans quelques minutes.
</p>
<p class="small-text">
Merci de votre patience et de votre compréhension.
</p>
</div>
</body>
</html>