dark.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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. position: absolute;
  70. top: 32px;
  71. left: 0px;
  72. right: 300px;
  73. bottom: 32px;
  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. display: none;
  93. padding: 5px 0px;
  94. background-color: #111;
  95. width: 140px;
  96. border-top: solid 1px #1D1D1D;
  97. }
  98. #menubar .menu:hover .options {
  99. display: block;
  100. }
  101. #menubar .menu .options hr {
  102. border-color: #444;
  103. }
  104. #menubar .menu .options .option {
  105. color: #666;
  106. background-color: transparent;
  107. padding: 5px 10px;
  108. margin: 0px !important;
  109. }
  110. #menubar .menu .options .option:hover {
  111. color: #fff;
  112. background-color: #08f;
  113. }
  114. #sidebar {
  115. position: absolute;
  116. right: 0px;
  117. top: 32px;
  118. bottom: 0px;
  119. width: 300px;
  120. background-color: #111;
  121. overflow: auto;
  122. }
  123. #sidebar input,
  124. #sidebar textarea,
  125. #sidebar select {
  126. background: #ccc;
  127. }
  128. #sidebar .Panel {
  129. margin-bottom: 10px;
  130. }
  131. #sidebar > .Panel {
  132. color: #888;
  133. padding: 10px;
  134. border-top: 1px solid #333;
  135. }
  136. #sidebar #outliner {
  137. width: 100%;
  138. height: 140px;
  139. color: #868686;
  140. font-size: 12px;
  141. }
  142. #sidebar .Panel.Material canvas {
  143. border: solid 1px #5A5A5A;
  144. }
  145. #toolbar {
  146. position: absolute;
  147. left: 0px;
  148. right: 300px;
  149. bottom: 0px;
  150. height: 32px;
  151. background-color: #111;
  152. color: #333;
  153. }
  154. #toolbar .Panel {
  155. padding: 4px;
  156. color: #888;
  157. }
  158. #toolbar button {
  159. margin-right: 6px;
  160. }