Spaces:
Sleeping
Sleeping
File size: 1,342 Bytes
921b439 1414c41 921b439 4380157 921b439 4380157 921b439 4703e99 921b439 1414c41 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
/* 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: 10px;
}
.sphere-controls, .fluid-controls {
margin-bottom: 20px;
}
.sphere-controls h3, .fluid-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;
}
#stop-btn {
background-color: #F44336;
}
#stop-btn:hover {
background-color: #d32f2f;
}
#reset-btn {
background-color: #2196F3;
}
#reset-btn:hover {
background-color: #1e88e5;
}
#save-btn {
background-color: #FF9800;
}
#save-btn:hover {
background-color: #e68900;
}
#load-btn {
background-color: #9C27B0;
}
#load-btn:hover {
background-color: #8e24aa;
}
#status-message {
color: #4CAF50;
font-size: 0.9em;
} |