File size: 651 Bytes
e1cc3bc | 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 44 | * {
box-sizing: border-box;
}
html, body {
font-family: system-ui, -apple-system, sans-serif;
font-size: 1rem;
margin: 0;
padding: 0;
background: #1a1a2e;
}
.loading {
display: flex;
align-items: center;
justify-content: center;
height: 400px;
color: #888;
font-size: 14px;
}
.error {
padding: 20px;
color: #ff6b6b;
}
.threejs-container {
width: 100%;
position: relative;
}
.error-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: #ff6b6b;
background: rgba(26, 26, 46, 0.9);
border-radius: 8px;
font-family: system-ui;
padding: 20px;
}
|