50 lines
817 B
CSS
50 lines
817 B
CSS
.contenedor-boletos {
|
|
width: 90%;
|
|
max-width: 1000px;
|
|
margin: 20px auto;
|
|
background-color: #1E1E30;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.titulo {
|
|
font-size: 24px;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.tabla-boletos {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.tabla-boletos th, .tabla-boletos td {
|
|
padding: 10px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #444;
|
|
}
|
|
|
|
.tabla-boletos th {
|
|
background-color: #1E1E30;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.tabla-boletos tr:hover {
|
|
background-color: #333;
|
|
}
|
|
|
|
.boton-imprimir {
|
|
background-color: #ffbf00;
|
|
color: black;
|
|
padding: 5px 10px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.boton-imprimir:hover {
|
|
background-color: #e6a800;
|
|
}
|