2025-11-23 04:14:21 +00:00
|
|
|
html, body {
|
|
|
|
|
margin: 0;
|
2025-11-22 09:36:49 +00:00
|
|
|
padding: 0;
|
2025-11-23 04:14:21 +00:00
|
|
|
overflow: hidden; /* optional: prevents scrollbars entirely */
|
2025-09-27 14:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dial-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 30px;
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dial {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-27 16:41:11 +00:00
|
|
|
.dial.selected {
|
|
|
|
|
background-color: #ddd;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-28 05:07:03 +00:00
|
|
|
|
|
|
|
|
#fileListWrapper {
|
2025-10-20 16:09:09 +00:00
|
|
|
width: 400px;
|
2025-09-28 05:07:03 +00:00
|
|
|
max-height: 200px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
background-color: #f0f4ff;
|
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileListHeader {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
background-color: #dbe4ff;
|
|
|
|
|
border-bottom: 1px solid #aaa;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileActions button {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileList {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileList li {
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileList li:hover {
|
|
|
|
|
background-color: #e6f0ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileList li.selected {
|
|
|
|
|
background-color: #cce0ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2025-10-27 16:12:27 +00:00
|
|
|
#curveCanvas {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 800px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2025-09-28 05:07:03 +00:00
|
|
|
|
2025-10-27 16:12:27 +00:00
|
|
|
#nodeeditor {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 1200px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2025-10-04 15:14:27 +00:00
|
|
|
|
2025-09-28 05:07:03 +00:00
|
|
|
|
2025-11-22 09:36:49 +00:00
|
|
|
#curveCanvas,
|
|
|
|
|
#nodeeditor {
|
2025-11-23 04:14:21 +00:00
|
|
|
width: 100vw;
|
|
|
|
|
height: 25vh;
|
2025-09-28 05:07:03 +00:00
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
border: 1px solid #ccc;
|
2025-10-27 16:12:27 +00:00
|
|
|
display: block;
|
2025-09-27 16:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2025-11-22 09:36:49 +00:00
|
|
|
|
2025-09-27 14:57:34 +00:00
|
|
|
textarea {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-22 09:36:49 +00:00
|
|
|
|
2025-10-04 10:28:23 +00:00
|
|
|
|
2025-10-18 15:20:50 +00:00
|
|
|
.menu-item {
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2025-10-27 16:12:27 +00:00
|
|
|
|
2025-10-18 15:20:50 +00:00
|
|
|
.menu-item:hover {
|
|
|
|
|
background: #ddd;
|
|
|
|
|
}
|
2025-11-22 09:36:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#urdf-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100vw;
|
2025-11-23 04:14:21 +00:00
|
|
|
height: 75vh;
|
2025-11-22 09:36:49 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#urdfCanvas {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block; /* removes inline gaps */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#overlay-canvas {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
}
|