Skip to content

Instantly share code, notes, and snippets.

@Giovasdf
Created May 12, 2025 21:34
Show Gist options
  • Select an option

  • Save Giovasdf/80d80d77080075e094150a0998e31900 to your computer and use it in GitHub Desktop.

Select an option

Save Giovasdf/80d80d77080075e094150a0998e31900 to your computer and use it in GitHub Desktop.
Index Estamos en Mantenimiento Oppa
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Estamos en mantenimiento</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: #ffffff;
text-align: center;
padding: 20px;
}
h1 {
font-size: 2.5em;
color: #2c3e50;
margin-bottom: 0.2em;
}
p {
font-size: 1.1em;
color: #555;
max-width: 600px;
}
img {
max-width: 90%;
width: 400px;
margin-bottom: 1.5em;
}
.footer {
margin-top: 2em;
font-size: 0.9em;
color: #999;
}
.bgColor {
background-color: #5132ff;
border-radius: 10px;
padding: 10px;
width: 100px;
}
</style>
</head>
<body>
<img src="https://i.ibb.co/M5BMG3rF/undraw-maintenance-rjtm.png" alt="Mantenimiento en progreso">
<h1>Estamos en mantenimiento</h1>
<p>Estamos trabajando en mejoras para brindarte una mejor experiencia. Volveremos a estar en línea pronto.</p>
<div class="footer">
<img src="https://somosoppa.reprovethorses.com/assets/logo-oppa-BNP6yVzq.png" class="bgColor" alt="Logo de Oppa">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment