Actualizar Interfaz/estilos/ventaboletos.css

This commit is contained in:
maria.ruiz 2025-03-10 08:00:26 +00:00
parent 3d5cf8b469
commit e3a4a499dc
1 changed files with 107 additions and 79 deletions
Interfaz/estilos

View File

@ -1,79 +1,107 @@
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
background-color: #f8f7f3; background-color: #d9d9d9 !important;
display: flex; display: flex;
flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 100vh; height: 100vh;
margin: 0; margin: 0;
} }
.contenedor {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 600px;
text-align: center;
position: relative;
}
.flecha-regresar {
font-size: 28px;
cursor: pointer;
position: absolute;
left: -100px;
top: 10%;
transform: translateY(-50%);
transition: 0.3s ease-in-out;
padding: 10px;
border-radius: 40%;
}
.flecha-regresar:hover {
background-color: rgba(239, 226, 226, 0.1);
}
.contenido {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
#titulo{
color: rgb(72, 73, 73);
padding: 10px;
}
.dias { .dias {
display: flex; display: flex;
justify-content: center;
gap: 10px; gap: 10px;
margin-bottom: 20px; margin-bottom: 20px;
} }
.dias button { .dias button {
padding: 12px; padding: 12px;
border: 1px solid #ccc; border: 1px solid #ccc;
background: white; background: white;
cursor: pointer; cursor: pointer;
color: rgb(61, 61, 61); color: rgb(61, 61, 61);
font-size: 18px;
} }
.dias button.selected { .dias button.selected {
background: rgb(51, 108, 212); background: rgb(51, 108, 212);
color: white; color: white;
} }
.grid { .grid {
display: grid; display: grid;
grid-template-columns: repeat(12, 30px); grid-template-columns: repeat(12, 30px);
gap: 5px; gap: 5px;
margin-bottom: 30px; margin-bottom: 30px;
justify-content: center;
} }
.asiento { .asiento {
width: 30px; width: 30px;
height: 30px; height: 30px;
border-radius: 50%; border-radius: 50%;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
background-color: rgb(249, 207, 129); background-color: rgb(177, 207, 250);
color: rgb(61, 61, 61); color: rgb(61, 61, 61);
font-size: 12px; font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
font-weight: normal;
border: none;
} }
.asiento.vendido { .asiento.vendido {
background-color: red; background-color: red;
cursor: not-allowed; cursor: not-allowed;
} }
.boton-vender { .boton-vender {
padding: 10px 20px; padding: 10px 20px;
background: rgb(119, 182, 119); background: rgb(68, 102, 68);
color: white; color: white;
border: none; border: none;
cursor: pointer; cursor: pointer;
border-radius: 18%; border-radius: 18%;
} }
.asiento, .asiento:focus, .asiento:active {
outline: none;
border: none;
box-shadow: none;
}
.inicio-container {
position: absolute;
top: 10px;
left: 100px;
}
.inicio-btn {
font-size: 16px;
padding: 8px 12px;
}
.conjunto{
justify-content: center;
align-items: center;
}