81 lines
1.2 KiB
CSS
81 lines
1.2 KiB
CSS
/* =========================
|
|
WARTEZIMMER MONITOR
|
|
========================= */
|
|
|
|
.waiting-monitor {
|
|
border: 3px solid #343a40;
|
|
border-radius: 10px;
|
|
padding: 15px;
|
|
min-height: 45vh; /* untere Hälfte */
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.waiting-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, 1fr);
|
|
grid-template-rows: repeat(3, 1fr);
|
|
gap: 10px;
|
|
height: 100%;
|
|
}
|
|
|
|
.waiting-slot {
|
|
border: 2px dashed #adb5bd;
|
|
border-radius: 6px;
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.waiting-slot.occupied {
|
|
border-style: solid;
|
|
border-color: #198754;
|
|
background-color: #e9f7ef;
|
|
}
|
|
|
|
.waiting-slot .name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.waiting-slot .birthdate {
|
|
font-size: 0.8rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.waiting-slot .placeholder {
|
|
color: #adb5bd;
|
|
font-style: italic;
|
|
}
|
|
|
|
.waiting-slot.empty {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.chair-icon {
|
|
width: 48px;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.auto-hide-flash {
|
|
animation: flashFadeOut 3s forwards;
|
|
}
|
|
|
|
@keyframes flashFadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
70% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
}
|