not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
410 B

  1. @import url(navbar.css);
  2. body {
  3. overflow: hidden;
  4. }
  5. #panel-container {
  6. height: 100%;
  7. width: 100%;
  8. }
  9. .panel {
  10. box-sizing: border-box;
  11. float: left;
  12. height: 100%;
  13. }
  14. #panel-left {
  15. overflow-y: auto;
  16. padding: 10px;
  17. width: 40%;
  18. }
  19. #panel-right {
  20. background-color: black;
  21. width: 60%;
  22. position: relative;
  23. }
  24. canvas {
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. }