36 lines
614 B
CSS
36 lines
614 B
CSS
/*
|
|
* Styles for the bookrequest page
|
|
*/
|
|
.ui-datepicker {
|
|
font-size: 0.8em;
|
|
}
|
|
table.passengers {
|
|
border-collapse: collapse;
|
|
empty-cells: hide;
|
|
margin: 0 10px;
|
|
}
|
|
table.passengers th {
|
|
background-color: #eee;
|
|
border: 1px solid #999;
|
|
}
|
|
table.passengers th,
|
|
table.passengers td {
|
|
padding: 4px;
|
|
}
|
|
table.passengers tbody input {
|
|
width: 100px;
|
|
}
|
|
table.passengers tbody input.date-input {
|
|
width: 70px;
|
|
}
|
|
button.passenger-btn {
|
|
margin-top: 5px;
|
|
margin-left: 10px;
|
|
}
|
|
table.passengers-review {
|
|
border-collapse: collapse;
|
|
}
|
|
table.passengers-review td {
|
|
border: 1px solid #eee;
|
|
padding: 4px 6px;
|
|
} |