Files

78 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2024-12-09 15:11:22 -05:00
/* Modal container */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1000; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
2024-12-19 15:57:33 -05:00
align-items: center; /* Vertically center the modal */
justify-content: center; /* Horizontally center the modal */
2024-12-09 15:11:22 -05:00
}
/* Modal content */
.modal-content {
background-color: white;
margin: 15% auto; /* Center the modal */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Adjust as needed */
2024-12-19 15:57:33 -05:00
height: 80%;
}
.qrcode-image {
object-fit: contain;
2024-12-09 15:11:22 -05:00
}
/* Close button */
.close {
color: black;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
2024-12-20 17:18:31 -05:00
2025-03-11 19:07:16 -04:00
h1 {
font-size: 1.2rem;
}
2024-12-20 17:18:31 -05:00
2024-12-26 00:33:23 -05:00
body {
2024-12-26 21:46:13 -05:00
display: grid;
2024-12-28 19:31:45 -05:00
grid-template-columns: 240px auto;
grid-template-rows: 40px auto;
font-family: Arial, sans-serif;
2025-03-11 19:07:16 -04:00
}
.nav-header {
font-size: 1.5rem;
padding: 10px 15px;
grid-column: 1 / 3;
grid-row: 1;
background-color: #C0C0C0;
2024-12-20 17:18:31 -05:00
}
2025-03-11 19:07:16 -04:00
.nav-items {
padding: 10px 15px;
grid-column: 1;
grid-row: 2 / 3;
background-color: #C0C0C0;
2024-12-20 17:18:31 -05:00
}
2024-12-28 19:31:45 -05:00
.message {
2025-03-11 19:07:16 -04:00
grid-column: 2;
grid-row: 1;
background-color: #C0C0C0;
align-content: center;
justify-items: center;
2024-12-26 00:33:23 -05:00
}
.content {
2024-12-26 21:46:13 -05:00
grid-column: 2;
2024-12-28 19:31:45 -05:00
grid-row: 2;
2025-03-11 19:07:16 -04:00
background-color: #E0E0E0;
2024-12-26 00:33:23 -05:00
}