31 lines
451 B
CSS
31 lines
451 B
CSS
html, body {
|
|
margin: 0px;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
canvas {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body:not(.import-active) .is-visible-import {
|
|
display: none !important;
|
|
}
|
|
|
|
body:not(.camera-active) .is-visible-camera {
|
|
display: none !important;
|
|
}
|
|
|
|
body:not(.editor-active) .is-visible-editor {
|
|
display: none !important;
|
|
}
|
|
|
|
body.import-active .is-hidden-import {
|
|
display: none !important;
|
|
}
|