display text if camera is offline instead of image

This commit is contained in:
2023-07-13 20:07:19 +02:00
parent 571dce0630
commit 8c04451cf2
5 changed files with 26 additions and 22 deletions

View File

@ -1,21 +1,27 @@
img {
transition:transform 0.25s ease;
.current_webcam_image {
transition: transform 0.25s ease;
}
img:hover {
-webkit-transform:scale(1.5);
transform:scale(1.5);
.current_webcam_image:hover {
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
.titletext {
font-size: calc(10px + 0.9vw);
font-size: calc(10px + 0.9vw);
}
.cameratext {
font-size: calc(10px + 0.9vw);
font-size: calc(10px + 0.9vw);
}
.infobox{
margin:0 !important;
padding:0 !important;
}
.infobox {
margin: 0 !important;
padding: 0 !important;
}
.camera_offline_text {
display: inline-block;
font-size: calc(10px + 0.9vw);
font-weight: bold;
}