80 lines
1.3 KiB
CSS
80 lines
1.3 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f8f7f3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.dias {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.dias button {
|
|
padding: 12px;
|
|
border: 1px solid #ccc;
|
|
background: white;
|
|
cursor: pointer;
|
|
color:rgb(61, 61, 61);
|
|
}
|
|
.dias button.selected {
|
|
background: rgb(51, 108, 212);
|
|
color: white;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(12, 30px);
|
|
gap: 5px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.asiento {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
background-color: rgb(249, 207, 129);
|
|
color: rgb(61, 61, 61);
|
|
font-size: 12px;
|
|
}
|
|
.asiento.vendido {
|
|
background-color: red;
|
|
cursor: not-allowed;
|
|
}
|
|
.boton-vender {
|
|
padding: 10px 20px;
|
|
background: rgb(119, 182, 119);
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
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;
|
|
}
|
|
|
|
|