git » bitbop.git » master » tree

[master] / style.css

/* style.css */

body {
  margin: 0;
  font-family: sans-serif;
  background: #d0d9e0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#top-bar {
  background: #3b4a58;
  color: white;
  padding: 5px;
  display: flex;
  gap: 5px;
}

#main-container {
  flex: 1;
  display: flex;
  overflow: hidden;
}

#editor-pane {
  width: 50%;
  padding: 8px;
  background: #1e1e1e;
  color: #d4d4d4;
  display: flex;
  flex-direction: column;
}

#editor-pane textarea {
  flex: 1;
  width: 100%;
  background: #1e1e1e;
  color: #d4d4d4;
  border: none;
  font-family: monospace;
  font-size: 12px;
  resize: none;
}

#ui-pane {
  width: 50%;
  display: flex;
  flex-direction: column;
}

#inputs-panel {
  flex: 1;
  padding: 10px;
  background: #f0f4f7;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  overflow-y: auto;
}

.input-group {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
}

#graphics-panel {
  height: 300px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #ccc;
}

canvas {
  border: 1px solid #888;
}