63 lines
1 KiB
CSS
63 lines
1 KiB
CSS
|
#container {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
gap: 10px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.gsplat-js {
|
||
|
font-size: 14px !important;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
#canvas {
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
|
||
|
dialog {
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
max-width: 20em;
|
||
|
color: white;
|
||
|
background-color: #000;
|
||
|
border: none;
|
||
|
position: relative;
|
||
|
padding-bottom: 50px;
|
||
|
/* transform: translate(-50%, -50%); */
|
||
|
}
|
||
|
|
||
|
#progress-container {
|
||
|
position: absolute;
|
||
|
/* top: 50%;
|
||
|
left: 50%; */
|
||
|
}
|
||
|
|
||
|
progress {
|
||
|
width: 100%;
|
||
|
height: 1em;
|
||
|
border: none;
|
||
|
background-color: #fff;
|
||
|
color: #eee;
|
||
|
border-radius: 1rem;
|
||
|
overflow: hidden;
|
||
|
box-shadow: inset -20px 30px 20px -10px #000000,
|
||
|
inset 20px -30px 20px -10px #000000;
|
||
|
}
|
||
|
|
||
|
progress::-webkit-progress-bar {
|
||
|
background-color: #1b1b1b;
|
||
|
}
|
||
|
|
||
|
progress::-webkit-progress-value {
|
||
|
background-color: #1b1b1b;
|
||
|
}
|
||
|
|
||
|
progress::-moz-progress-bar {
|
||
|
background-color: #1b1b1b;
|
||
|
}
|