165 lines
3.0 KiB
CSS
165 lines
3.0 KiB
CSS
.test {
|
|
width: 55px;
|
|
height: 10px;
|
|
}
|
|
|
|
.panel-default > .panel-heading {
|
|
text-align: center;
|
|
}
|
|
|
|
video {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
|
|
@media (max-width: 992px) {
|
|
.modal-content {
|
|
padding: 0 !important;
|
|
}
|
|
}
|
|
|
|
.md-modal {
|
|
/* margin: auto;
|
|
position: fixed;
|
|
top: 100px;
|
|
left: 0;
|
|
right: 0;
|
|
width: 50%;
|
|
max-width: 630px;
|
|
min-width: 320px;
|
|
height: auto;
|
|
z-index: 2000;
|
|
visibility: hidden;
|
|
-webkit-backface-visibility: hidden;
|
|
-moz-backface-visibility: hidden;
|
|
backface-visibility: hidden; */
|
|
|
|
|
|
margin: auto;
|
|
position: fixed;
|
|
top: 70px;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: auto;
|
|
z-index: 2000;
|
|
visibility: hidden;
|
|
-webkit-backface-visibility: hidden;
|
|
-moz-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.md-show {
|
|
visibility: visible;
|
|
}
|
|
|
|
.md-overlay {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
visibility: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
opacity: 0;
|
|
background: rgba(228, 240, 227, 0.8);
|
|
-webkit-transition: all 0.3s;
|
|
-moz-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.md-show ~ .md-overlay {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.md-effect-12 .md-content {
|
|
-webkit-transform: scale(0.8);
|
|
-moz-transform: scale(0.8);
|
|
-ms-transform: scale(0.8);
|
|
transform: scale(0.8);
|
|
opacity: 0;
|
|
-webkit-transition: all 0.3s;
|
|
-moz-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.md-show.md-effect-12 ~ .md-overlay {
|
|
background-color: #e4f0e3;
|
|
}
|
|
|
|
.md-effect-12 .md-content h3,
|
|
.md-effect-12 .md-content {
|
|
background: transparent;
|
|
}
|
|
|
|
.md-show.md-effect-12 .md-content {
|
|
-webkit-transform: scale(1);
|
|
-moz-transform: scale(1);
|
|
-ms-transform: scale(1);
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
|
|
.image-show {
|
|
margin: 0 auto 8px auto;
|
|
border: 2px dashed #148b8b;
|
|
width: 200px;
|
|
height: 200px;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.image-show button {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: #17909040;
|
|
font-family: inherit;
|
|
position: absolute;
|
|
z-index: 3;
|
|
color: #fff;
|
|
font-weight: 900;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.camera_close {
|
|
position: fixed;
|
|
top: -50px;
|
|
right: 10px;
|
|
background-color: #fff;
|
|
border-radius: 50px;
|
|
width: 42px;
|
|
height: 42px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
/* video {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
} */
|
|
|
|
video {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
object-fit: cover !important;
|
|
}
|
|
|
|
.loadingImage {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 5;
|
|
background: #75ffff99;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 10px;
|
|
display: none;
|
|
} |