File size: 707 Bytes
ea35075 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
.app {
width: 100vw;
height: 100vh;
position: absolute;
top: 0px;
left: 0px;
}
.threejsCanvas {
display: block;
width: 100vw;
height: 100vh;
}
.gallery {
user-select: none;
height: 140px;
position: fixed;
bottom: 50px;
right: 50px;
display: flex;
justify-content: flex-end;
}
.gallery img {
width: 100px;
height: 140px;
object-fit: contain;
background-color: gray;
user-select: none;
margin-right: 2px;
margin-left: 2px;
}
.background {
width: 100vw;
height: 100vh;
background-color: rgb(214, 214, 214);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
|