You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
3.0 KiB
160 lines
3.0 KiB
<style>
|
|
#table_index2_filter,
|
|
#table_index2_paginate {
|
|
text-align: right;
|
|
}
|
|
#table_index3_filter,
|
|
#table_index3_paginate {
|
|
text-align: right;
|
|
}
|
|
#table_index4_filter,
|
|
#table_index4_paginate {
|
|
text-align: right;
|
|
}
|
|
#table_index5_filter,
|
|
#table_index5_paginate {
|
|
text-align: right;
|
|
}
|
|
#table_index6_filter,
|
|
#table_index6_paginate {
|
|
text-align: right;
|
|
}
|
|
#table_index7_filter,
|
|
#table_index7_paginate {
|
|
text-align: right;
|
|
}
|
|
|
|
table {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
td {
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
img {
|
|
width: 125px;
|
|
}
|
|
|
|
.width_style_1 {
|
|
width: 125px;
|
|
}
|
|
|
|
#table_index_filter {
|
|
float: right;
|
|
}
|
|
|
|
#table_index_paginate {
|
|
float: right;
|
|
}
|
|
|
|
label {
|
|
display: inline-flex;
|
|
margin-bottom: .5rem;
|
|
margin-top: .5rem;
|
|
}
|
|
|
|
.table>tbody>tr>th {
|
|
vertical-align: middle !important;
|
|
text-align: center;
|
|
}
|
|
|
|
.table>tbody>tr>td {
|
|
vertical-align: middle !important;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
/* The Modal (background) */
|
|
.modal {
|
|
display: none;
|
|
/* Hidden by default */
|
|
position: fixed;
|
|
/* Stay in place */
|
|
z-index: 1;
|
|
/* Sit on top */
|
|
padding-top: 100px;
|
|
/* Location of the box */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
/* Full width */
|
|
height: 100%;
|
|
/* Full height */
|
|
overflow: auto;
|
|
/* Enable scroll if needed */
|
|
|
|
}
|
|
|
|
.modal .back {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
/* Black w/ opacity */
|
|
}
|
|
|
|
/* Modal Content */
|
|
.modal-content {
|
|
z-index: 9;
|
|
background-color: #fefefe;
|
|
margin: auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 80%;
|
|
}
|
|
|
|
/* The Close Button */
|
|
.close {
|
|
color: #aaaaaa;
|
|
float: right;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.close:hover,
|
|
.close:focus {
|
|
color: #000;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
table {
|
|
border: 0;
|
|
}
|
|
|
|
table thead {
|
|
display: none;
|
|
}
|
|
|
|
table tr {
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
border-bottom: 2px solid #ddd;
|
|
}
|
|
|
|
table td {
|
|
display: block;
|
|
text-align: right;
|
|
font-size: 14px;
|
|
border-bottom: 1px dotted #ccc;
|
|
}
|
|
|
|
table td:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
table td:before {
|
|
content: attr(data-label);
|
|
float: left;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
</style>
|