File size: 948 Bytes
921b439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* static/styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

#container {
    display: flex;
    height: 100vh;
}

#controls {
    width: 300px;
    padding: 20px;
    background-color: #2a2a2a;
    overflow-y: auto;
}

#scene-container {
    flex: 1;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

p {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.sphere-controls {
    margin-bottom: 20px;
}

.sphere-controls h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

label {
    display: block;
    margin: 5px 0;
}

input[type="range"] {
    width: 100%;
}

button {
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    background-color: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#reset-btn {
    background-color: #2196F3;
}

#reset-btn:hover {
    background-color: #1e88e5;
}