73 lines
1.6 KiB
CSS
73 lines
1.6 KiB
CSS
table, th, td {
|
|
word-wrap: break-word;
|
|
vertical-align: top;
|
|
}
|
|
table tbody tr:hover {
|
|
background-color: #e0f7f5 !important;
|
|
cursor: pointer;
|
|
color: black !important;
|
|
}
|
|
table tbody tr {
|
|
transition: background-color 0.2s ease, color 0.2s ease;
|
|
}
|
|
|
|
table thead th {
|
|
background-color: teal;
|
|
color: white;
|
|
height: 20px;
|
|
border-radius: 3px;
|
|
}
|
|
table thead th:first-child {
|
|
border-top-left-radius: 10px;
|
|
}
|
|
|
|
table thead th:last-child {
|
|
border-top-right-radius: 10px;
|
|
}
|
|
/* CSS to position the logo */
|
|
.logo {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
max-height: 200px;
|
|
z-index: 1; /* Set a higher z-index value for the logo */
|
|
}
|
|
.nav-list {
|
|
padding-left: 0;
|
|
}
|
|
|
|
/* CSS to adjust the modal title */
|
|
.modal-title {
|
|
text-align: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
z-index: 2; /* Set a lower z-index value for the modal title */
|
|
}
|
|
|
|
/* Custom CSS to make the modal wider */
|
|
.custom-modal-width {
|
|
max-width: 600px; /* Adjust this value as needed */
|
|
margin: 0 auto; /* Center the modal horizontally */
|
|
}
|
|
|
|
.modal {
|
|
z-index: 1; /* Set a higher z-index for the modal */
|
|
display: none;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
/* Modal Backdrop CSS */
|
|
.modal-backdrop {
|
|
z-index: 1; /* Set a lower z-index for the backdrop */
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* Customized modal backdrop */
|
|
.custom-modal-backdrop {
|
|
z-index: 1000; /* Set a lower z-index for the backdrop */
|
|
background-color: rgba(193, 196, 210, 0.5); /* Customize the background color and opacity as needed */
|
|
}
|