display text if camera is offline instead of image
This commit is contained in:
@ -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;
|
||||
}
|
Reference in New Issue
Block a user