32 lines
522 B
CSS
32 lines
522 B
CSS
.hashtalk-3d-element {
|
|
width: 100%;
|
|
min-height: 160px;
|
|
height: 520px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
}
|
|
|
|
.hashtalk-3d-element canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.hashtalk-3d-element--error::before {
|
|
content: "3D model loading error";
|
|
position: absolute;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.hashtalk-3d-element {
|
|
height: 360px;
|
|
}
|
|
}
|