dark.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. .CollapsiblePanel .CollapsiblePanelButton {
  46. float: left;
  47. margin-right: 6px;
  48. width: 0px;
  49. height: 0px;
  50. border: 6px solid transparent;
  51. }
  52. .CollapsiblePanel.collapsed .CollapsiblePanelButton {
  53. margin-top: 2px;
  54. border-left-color: #555;
  55. }
  56. .CollapsiblePanel:not(.collapsed) .CollapsiblePanelButton {
  57. margin-top: 6px;
  58. border-top-color: #555;
  59. }
  60. .CollapsiblePanel.collapsed .CollapsibleContent {
  61. display: none;
  62. }
  63. .FancySelect {
  64. background: #222;
  65. border: 1px solid #3C3C3C;
  66. padding: 0;
  67. cursor: default;
  68. overflow: auto;
  69. outline: none;
  70. }
  71. .FancySelect .option {
  72. padding: 4px;
  73. white-space: nowrap;
  74. }
  75. .FancySelect .option.active {
  76. background-color: #153C5E;
  77. }
  78. input.Number {
  79. color: #2A75B7;
  80. font-size: 12px; /** TODO: Use of !imporant is not ideal **/
  81. background-color: transparent!important; /* For now this is a quick fix a rendering issue due to inherited background */
  82. border: 1px solid transparent;
  83. padding: 2px;
  84. cursor: col-resize;
  85. }
  86. #viewport {
  87. position: absolute;
  88. top: 32px;
  89. left: 0px;
  90. right: 300px;
  91. bottom: 32px;
  92. }
  93. #menubar {
  94. position: absolute;
  95. width: 100%;
  96. height: 32px;
  97. background-color: #111;
  98. padding: 0px;
  99. margin: 0px;
  100. }
  101. #menubar .menu {
  102. float: left;
  103. width: 50px;
  104. cursor: pointer;
  105. }
  106. #menubar .Panel {
  107. color: #888;
  108. }
  109. #menubar .menu .options {
  110. display: none;
  111. padding: 5px 0px;
  112. background-color: #111;
  113. width: 140px;
  114. border-top: solid 1px #1D1D1D;
  115. }
  116. #menubar .menu:hover .options {
  117. display: block;
  118. }
  119. #menubar .menu .options hr {
  120. border-color: #444;
  121. }
  122. #menubar .menu .options .option {
  123. color: #666;
  124. background-color: transparent;
  125. padding: 5px 10px;
  126. margin: 0px !important;
  127. }
  128. #menubar .menu .options .option:hover {
  129. color: #fff;
  130. background-color: #08f;
  131. }
  132. #sidebar {
  133. position: absolute;
  134. right: 0px;
  135. top: 32px;
  136. bottom: 0px;
  137. width: 300px;
  138. background-color: #111;
  139. overflow: auto;
  140. }
  141. #sidebar input,
  142. #sidebar textarea,
  143. #sidebar select {
  144. background: #ccc;
  145. }
  146. #sidebar .Panel {
  147. margin-bottom: 10px;
  148. }
  149. #sidebar .Panel.collapsed {
  150. margin-bottom: 0px;
  151. }
  152. #sidebar > .Panel {
  153. color: #888;
  154. padding: 10px;
  155. border-top: 1px solid #333;
  156. }
  157. #sidebar #outliner {
  158. width: 100%;
  159. height: 140px;
  160. color: #868686;
  161. font-size: 12px;
  162. }
  163. #sidebar .Panel.Material canvas {
  164. border: solid 1px #5A5A5A;
  165. }
  166. #toolbar {
  167. position: absolute;
  168. left: 0px;
  169. right: 300px;
  170. bottom: 0px;
  171. height: 32px;
  172. background-color: #111;
  173. color: #333;
  174. }
  175. #toolbar .Panel {
  176. padding: 4px;
  177. color: #888;
  178. }
  179. #toolbar button {
  180. margin-right: 6px;
  181. }