level.html 498 B

12345678910111213
  1. <!-- level.html -->
  2. <button id="add-level-button">新增关卡</button>
  3. <div style="display: flex; flex-direction: row; height: 100vh; width: 100%;">
  4. <div style="overflow-y: scroll; height: 100%; width: 20%;">
  5. <ul id="level-list" style="height: 100%;">
  6. </ul>
  7. </div>
  8. <div style="overflow-y: scroll; height: 100%; width: 70%;">
  9. <div id="level-details" ></div>
  10. <div id="instance-details" ></div>
  11. <div id="template-details" ></div>
  12. </div>
  13. </div>