Actualización 6/3/25

This commit is contained in:
Jorge Luis Ortega Zenteno 2025-03-06 11:51:14 -06:00
parent ce5c75fff4
commit 5dd40f9760
5 changed files with 22 additions and 33 deletions

View File

@ -1,19 +0,0 @@
#btnRegresar {
position: absolute;
top: 20px;
left: 20px;
background-color: #6c757d;
color: white;
padding: 10px 15px;
border-radius: 8px;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: bold;
transition: background 0.3s, transform 0.2s;
}
#btnRegresar:hover {
background-color: #5a6268;
transform: scale(1.05);
}

View File

@ -18,6 +18,12 @@
width: 100%;
max-width: 600px;
height: 400px;
margin-bottom: 20px;
}
.cardIzq h2{
font-size: 44px;
margin: 20px;
}
.zones-container {
@ -35,20 +41,32 @@
}
.card {
background: #aab2b2;
background: #1E1E30;
border-radius: 12px;
padding: 20px;
width: 100%;
max-width: 300px;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
color:#ffffff;
}
.zone-btn {
padding: 10px;
margin-left: 10px;
margin-right: 10px;
border-radius: 8px;
color: white;
font-weight: bold;
cursor: pointer;
font-size: 18px;
color: white;
transition: 0.5s;
}
.zone-btn p{
padding: 10px;
}
.zone-btn:hover {
transform: scale(1.1);
}
.vip-zone { background-color: #5e17eb; }

View File

@ -1,9 +0,0 @@
document.addEventListener("DOMContentLoaded", () => {
const btnRegresar = document.getElementById("btnRegresar");
if (btnRegresar) {
btnRegresar.addEventListener("click", () => {
window.history.back(); // Regresa a la página anterior
});
}
});

View File

@ -14,7 +14,6 @@ document.addEventListener("DOMContentLoaded", async () => {
cargarZonas(zonas, conciertoId);
} catch (error) {
console.error(error);
alert("Error al cargar los datos del concierto");
}
});

View File

@ -7,7 +7,7 @@
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<link rel="stylesheet" href="css/conciertos.css"> <!-- Aquí se incluye el CSS -->
<link rel="stylesheet" href="css/zonas.css">
<link rel="stylesheet" href="css/ventanaBoletos.css">
</head>
<body>
<nav>