69 lines
1.8 KiB
SCSS
69 lines
1.8 KiB
SCSS
.main-page {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
padding: 15px 10px;
|
|
background-color: #fff;
|
|
.page-content {
|
|
border: 1px solid #ccc;
|
|
padding: 10px 20px;
|
|
.search-filter {
|
|
padding: 0 15px;
|
|
.first-condition {
|
|
.line-operator-right {
|
|
text-align: right;
|
|
padding: 0;
|
|
.btn-info {
|
|
background-color: rgb(122, 156, 204);
|
|
border-color: rgb(122, 156, 204);
|
|
}
|
|
}
|
|
}
|
|
.input-container {
|
|
padding: 0;
|
|
> .form-control {
|
|
width: 180px;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
.airline-table{
|
|
.table-container{
|
|
// border: 1px solid #ccc;
|
|
width: 100%;
|
|
height: 700px;
|
|
overflow: auto;
|
|
box-shadow: 0 0 1px .5px #ddd;
|
|
table{
|
|
width: max-content;
|
|
tr{
|
|
cursor: pointer;
|
|
&.selected{
|
|
background: rgb(181, 215, 255);
|
|
}
|
|
}
|
|
th{
|
|
background-color: #ddd;
|
|
}
|
|
th,td{
|
|
// border: none;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 991px) {
|
|
.line-operator-right {
|
|
text-align: left !important;
|
|
}
|
|
}
|
|
|
|
// @media screen and (min-width: 1200px){
|
|
// .line-operator-right{
|
|
// text-align: left;
|
|
// }
|
|
// }
|