This commit is contained in:
2025-06-04 10:33:01 -06:00
parent 04ae185504
commit 3a01c24bf5
51 changed files with 1197 additions and 2765 deletions

View File

@@ -12,6 +12,7 @@ $logo = $config['logo_url'] ?? 'assets/img/logo_siih.png';
$color1 = explode(',', $config['colores_primarios'] ?? '#003366,#0055A5')[0];
$color2 = explode(',', $config['colores_primarios'] ?? '#003366,#0055A5')[1];
?>
<!DOCTYPE html>
<html lang="es">
<head>
@@ -22,25 +23,11 @@ $color2 = explode(',', $config['colores_primarios'] ?? '#003366,#0055A5')
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<style>
body {
background-color: #f4f6f9;
font-family: 'Segoe UI', sans-serif;
text-align: center;
padding-top: 100px;
}
.swal2-popup {
font-size: 1.1rem !important;
animation: fadeInUp 0.6s ease-out;
}
body { background-color: #f4f6f9; font-family: 'Segoe UI', sans-serif; text-align: center; padding-top: 100px; }
.swal2-popup { font-size: 1.1rem !important; animation: fadeInUp 0.6s ease-out; }
@keyframes fadeInUp {
0% {
transform: translateY(20px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
0% { transform: translateY(20px); opacity: 0; }
100% { transform: translateY(0); opacity: 1; }
}
</style>
</head>
@@ -65,4 +52,4 @@ $color2 = explode(',', $config['colores_primarios'] ?? '#003366,#0055A5')
</script>
</body>
</html>
</html>