dark.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. * {
  2. vertical-align: middle;
  3. }
  4. /* Webkit micro scrollbars */
  5. ::-webkit-scrollbar {
  6. width:9px;
  7. }
  8. ::-webkit-scrollbar-track {
  9. -webkit-border-radius:5px;
  10. border-radius:5px;
  11. background:rgba(140,140,140,0.1);
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. -webkit-border-radius:5px;
  15. border-radius:5px;
  16. background:rgba(140,140,140,0.2);
  17. }
  18. ::-webkit-scrollbar-thumb:hover {
  19. background:rgba(140,140,140,0.4);
  20. }
  21. ::-webkit-scrollbar-thumb:window-inactive {
  22. background:rgba(140,140,140,0.5);
  23. }
  24. body {
  25. font-family: Arial, sans-serif;
  26. font-size: 14px;
  27. margin: 0;
  28. overflow: hidden;
  29. }
  30. hr {
  31. border: 0px;
  32. border-top: 1px solid #ccc;
  33. }
  34. button {
  35. position: relative;
  36. }
  37. .Panel {
  38. -moz-user-select: none;
  39. -webkit-user-select: none;
  40. -ms-user-select: none;
  41. /* No support for these yet */
  42. -o-user-select: none;
  43. user-select: none;
  44. }
  45. .FancySelect {
  46. background: #222;
  47. border: 1px solid #3C3C3C;
  48. padding: 0;
  49. cursor: default;
  50. overflow: auto;
  51. outline: none;
  52. }
  53. .FancySelect .option {
  54. padding: 4px;
  55. white-space: nowrap;
  56. }
  57. .FancySelect .option.active {
  58. background-color: #153C5E;
  59. }
  60. input.Number {
  61. color: #2A75B7;
  62. font-size: 12px; /** TODO: Use of !imporant is not ideal **/
  63. background-color: transparent!important; /* For now this is a quick fix a rendering issue due to inherited background */
  64. border: 1px solid transparent;
  65. padding: 2px;
  66. cursor: col-resize;
  67. }
  68. #viewport {
  69. top: 32px;
  70. left: 0px;
  71. right: 300px;
  72. bottom: 32px;
  73. background-color: #333333;
  74. }
  75. #menubar {
  76. position: absolute;
  77. width: 100%;
  78. height: 32px;
  79. background-color: #111;
  80. padding: 0px;
  81. margin: 0px;
  82. }
  83. #menubar .menu {
  84. float: left;
  85. width: 50px;
  86. cursor: pointer;
  87. }
  88. #menubar .Panel {
  89. color: #888;
  90. }
  91. #menubar .menu .options {
  92. padding: 5px 0px;
  93. background-color: #111;
  94. width: 140px;
  95. border-top: solid 1px #1D1D1D;
  96. }
  97. #menubar .menu .options hr {
  98. border-color: #444;
  99. }
  100. #menubar .menu .options .option {
  101. color: #666;
  102. background-color: transparent;
  103. padding: 5px 10px;
  104. margin: 0px !important;
  105. }
  106. #menubar .menu .options .option:hover {
  107. color: #fff;
  108. background-color: #08f;
  109. }
  110. #sidebar {
  111. position: absolute;
  112. right: 0px;
  113. top: 32px;
  114. bottom: 0px;
  115. width: 300px;
  116. background-color: #111;
  117. overflow: auto;
  118. }
  119. #sidebar input,
  120. #sidebar textarea,
  121. #sidebar select {
  122. background: #ccc;
  123. }
  124. #sidebar .Panel {
  125. margin-bottom: 10px;
  126. }
  127. #sidebar > .Panel {
  128. color: #888;
  129. padding: 10px;
  130. border-top: 1px solid #333;
  131. }
  132. #sidebar #outliner {
  133. width: 100%;
  134. height: 140px;
  135. color: #868686;
  136. font-size: 12px;
  137. }
  138. #sidebar .Panel.Material canvas {
  139. border: solid 1px #5A5A5A;
  140. }
  141. #sidebar #outliner .type {
  142. padding: 2px 4px;
  143. font-size: 10px;
  144. background: #474747;
  145. border-radius: 2px 2px;
  146. color: #aaa;
  147. }
  148. #toolbar {
  149. position: absolute;
  150. left: 0px;
  151. right: 300px;
  152. bottom: 0px;
  153. height: 32px;
  154. background-color: #111;
  155. color: #333;
  156. }
  157. #toolbar .Panel {
  158. padding: 4px;
  159. color: #888;
  160. }
  161. #toolbar button {
  162. margin-right: 6px;
  163. }