main.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. #node-editor-graph-root {
  2. display: grid;
  3. grid-template-rows: calc(100% - 120px) 120px;
  4. height: 100%;
  5. width: 100%;
  6. background: #464646;
  7. font: 14px "acumin-pro";
  8. }
  9. #nodeList {
  10. grid-row: 1 / span 2;
  11. grid-column: 1;
  12. }
  13. #leftGrab {
  14. grid-row: 1 / span 2;
  15. grid-column: 2;
  16. cursor: ew-resize;
  17. }
  18. #rightGrab {
  19. grid-row: 1 / span 2;
  20. grid-column: 4;
  21. cursor: ew-resize;
  22. }
  23. .diagram-container {
  24. grid-row: 1;
  25. grid-column: 3;
  26. background: #5f5b60;
  27. width: 100%;
  28. height: 100%;
  29. .diagram {
  30. width: 100%;
  31. height: 100%;
  32. }
  33. }
  34. .right-panel {
  35. grid-row: 1 / span 2;
  36. grid-column: 5;
  37. display: grid;
  38. grid-template-rows: 1fr auto;
  39. grid-template-columns: 100%;
  40. #propertyTab {
  41. grid-row: 1;
  42. grid-column: 1;
  43. }
  44. #preview-canvas {
  45. border-top: 1px solid rgb(85, 85, 85);
  46. grid-row: 2;
  47. grid-column: 1;
  48. width: 100%;
  49. padding-top: 100%;
  50. #preview-canvas {
  51. width: 100%;
  52. height: 100%;
  53. }
  54. }
  55. }
  56. #log-console {
  57. grid-row: 2;
  58. grid-column: 3;
  59. }
  60. .dialog-container {
  61. position: absolute;
  62. width: 100%;
  63. height: 100%;
  64. background: rgba(0.1, 0.1, 0.1, 0.6);
  65. display: grid;
  66. font-family: "acumin-pro";
  67. top:0;
  68. .dialog {
  69. align-self: center;
  70. justify-self: center;
  71. min-height: 140px;
  72. max-width: 400px;
  73. border-radius: 10px;
  74. background: white;
  75. display: grid;
  76. grid-template-columns: 100%;
  77. grid-template-rows: calc(100% - 50px) 50px;
  78. .dialog-message {
  79. grid-row: 1;
  80. grid-column: 1;
  81. margin-top: 20px;
  82. padding: 10px;
  83. font-size: 18px;
  84. color: black;
  85. }
  86. .dialog-buttons {
  87. grid-row: 2;
  88. grid-column: 1;
  89. display: grid;
  90. grid-template-rows: 100%;
  91. grid-template-columns: 100%;
  92. color: white;
  93. .dialog-button-ok {
  94. cursor: pointer;
  95. justify-self: center;
  96. background:green;
  97. min-width: 80px;
  98. justify-content: center;
  99. display: grid;
  100. align-content: center;
  101. align-self: center;
  102. height: 35px;
  103. border-radius: 10px;
  104. &:hover {
  105. opacity: 0.8;
  106. }
  107. &.error {
  108. background: red;
  109. }
  110. }
  111. }
  112. }
  113. }