main.css 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  1. :root {
  2. color-scheme: light dark;
  3. }
  4. body {
  5. font-family: Helvetica, Arial, sans-serif;
  6. font-size: 14px;
  7. margin: 0;
  8. overflow: hidden;
  9. }
  10. hr {
  11. border: 0;
  12. border-top: 1px solid #ccc;
  13. }
  14. button {
  15. position: relative;
  16. }
  17. input {
  18. vertical-align: middle;
  19. }
  20. input[type="color"]::-webkit-color-swatch-wrapper {
  21. padding: 0;
  22. }
  23. input[type="color"]::-webkit-color-swatch {
  24. border: none;
  25. }
  26. textarea {
  27. tab-size: 4;
  28. white-space: pre;
  29. word-wrap: normal;
  30. }
  31. textarea.success {
  32. border-color: #8b8 !important;
  33. }
  34. textarea.fail {
  35. border-color: #f00 !important;
  36. background-color: rgba(255,0,0,0.05);
  37. }
  38. textarea, input { outline: none; } /* osx */
  39. .Panel {
  40. -moz-user-select: none;
  41. -webkit-user-select: none;
  42. -ms-user-select: none;
  43. /* No support for these yet */
  44. -o-user-select: none;
  45. user-select: none;
  46. }
  47. .TabbedPanel {
  48. -moz-user-select: none;
  49. -webkit-user-select: none;
  50. -ms-user-select: none;
  51. /* No support for these yet */
  52. -o-user-select: none;
  53. user-select: none;
  54. position: relative;
  55. display: block;
  56. width: 100%;
  57. }
  58. .TabbedPanel .Tabs {
  59. position: relative;
  60. display: block;
  61. width: 100%;
  62. min-width: 300px;
  63. }
  64. .TabbedPanel .Tabs .Tab {
  65. padding: 10px;
  66. text-transform: uppercase;
  67. }
  68. .TabbedPanel .Panels {
  69. position: relative;
  70. display: block;
  71. width: 100%;
  72. height: 100%;
  73. min-width: 300px;
  74. }
  75. /* Listbox */
  76. .Listbox {
  77. color: #444;
  78. background-color: #fff;
  79. padding: 0;
  80. width: 100%;
  81. min-height: 140px;
  82. font-size: 12px;
  83. cursor: default;
  84. overflow: auto;
  85. }
  86. .Listbox .ListboxItem {
  87. padding: 6px;
  88. color: #666;
  89. white-space: nowrap;
  90. }
  91. .Listbox .ListboxItem.active {
  92. background-color: rgba(0, 0, 0, 0.04);
  93. }
  94. /* CodeMirror */
  95. .CodeMirror {
  96. position: absolute !important;
  97. top: 37px;
  98. width: 100% !important;
  99. height: calc(100% - 37px) !important;
  100. }
  101. .CodeMirror .errorLine {
  102. background: rgba(255,0,0,0.25);
  103. }
  104. .CodeMirror .esprima-error {
  105. color: #f00;
  106. text-align: right;
  107. padding: 0 20px;
  108. }
  109. /* outliner */
  110. #outliner .opener {
  111. display: inline-block;
  112. width: 14px;
  113. height: 14px;
  114. margin: 0px 4px;
  115. vertical-align: top;
  116. text-align: center;
  117. }
  118. #outliner .opener.open:after {
  119. content: '−';
  120. }
  121. #outliner .opener.closed:after {
  122. content: '+';
  123. }
  124. #outliner .option {
  125. border: 1px solid transparent;
  126. }
  127. #outliner .option.drag {
  128. border: 1px dashed #999;
  129. }
  130. #outliner .option.dragTop {
  131. border-top: 1px dashed #999;
  132. }
  133. #outliner .option.dragBottom {
  134. border-bottom: 1px dashed #999;
  135. }
  136. #outliner .type {
  137. display: inline-block;
  138. width: 14px;
  139. height: 14px;
  140. color: #ddd;
  141. text-align: center;
  142. }
  143. #outliner .type:after {
  144. content: '●';
  145. }
  146. /* */
  147. #outliner .Scene {
  148. color: #8888dd;
  149. }
  150. #outliner .Camera {
  151. color: #dd8888;
  152. }
  153. #outliner .Light {
  154. color: #dddd88;
  155. }
  156. /* */
  157. #outliner .Object3D {
  158. color: #aaaaee;
  159. }
  160. #outliner .Mesh {
  161. color: #8888ee;
  162. }
  163. #outliner .Line {
  164. color: #88ee88;
  165. }
  166. #outliner .LineSegments {
  167. color: #88ee88;
  168. }
  169. #outliner .Points {
  170. color: #ee8888;
  171. }
  172. /* */
  173. #outliner .Geometry {
  174. color: #aaeeaa;
  175. }
  176. #outliner .Material {
  177. color: #eeaaee;
  178. }
  179. /* */
  180. #outliner .Script:after {
  181. content: '◎'
  182. }
  183. /* */
  184. button {
  185. color: #555;
  186. background-color: #ddd;
  187. border: 0px;
  188. margin: 0px; /* GNOME Web */
  189. padding: 5px 8px;
  190. font-size: 12px;
  191. text-transform: uppercase;
  192. cursor: pointer;
  193. outline: none;
  194. }
  195. button:hover {
  196. background-color: #fff;
  197. }
  198. button.selected {
  199. background-color: #fff;
  200. }
  201. input, textarea {
  202. border: 1px solid transparent;
  203. color: #444;
  204. }
  205. input.Number {
  206. color: #08f!important;
  207. font-size: 12px;
  208. border: 0px;
  209. padding: 2px;
  210. }
  211. select {
  212. color: #666;
  213. background-color: #ddd;
  214. border: 0px;
  215. text-transform: uppercase;
  216. cursor: pointer;
  217. outline: none;
  218. }
  219. select:hover {
  220. background-color: #fff;
  221. }
  222. /* UI */
  223. #resizer {
  224. position: absolute;
  225. top: 32px;
  226. right: 295px;
  227. width: 5px;
  228. bottom: 0px;
  229. /* background-color: rgba(255,0,0,0.5); */
  230. cursor: col-resize;
  231. }
  232. #viewport {
  233. position: absolute;
  234. top: 32px;
  235. left: 0;
  236. right: 300px;
  237. bottom: 0;
  238. }
  239. #viewport #info {
  240. text-shadow: 1px 1px 0 rgba(0,0,0,0.25);
  241. pointer-events: none;
  242. }
  243. #script {
  244. position: absolute;
  245. top: 32px;
  246. left: 0;
  247. right: 300px;
  248. bottom: 0;
  249. opacity: 0.9;
  250. }
  251. #player {
  252. position: absolute;
  253. top: 32px;
  254. left: 0;
  255. right: 300px;
  256. bottom: 0;
  257. }
  258. #menubar {
  259. position: absolute;
  260. width: 100%;
  261. height: 32px;
  262. background: #eee;
  263. padding: 0;
  264. margin: 0;
  265. right: 0;
  266. top: 0;
  267. }
  268. #menubar .menu {
  269. float: left;
  270. cursor: pointer;
  271. padding-right: 8px;
  272. }
  273. #menubar .menu.right {
  274. float: right;
  275. cursor: auto;
  276. padding-right: 0;
  277. text-align: right;
  278. }
  279. #menubar .menu .title {
  280. display: inline-block;
  281. color: #888;
  282. margin: 0;
  283. padding: 8px;
  284. line-height: 16px;
  285. }
  286. #menubar .menu .options {
  287. position: fixed;
  288. display: none;
  289. padding: 5px 0;
  290. background: #eee;
  291. width: 150px;
  292. max-height: calc(100% - 80px);
  293. overflow: auto;
  294. }
  295. #menubar .menu:hover .options {
  296. display: block;
  297. }
  298. #menubar .menu .options hr {
  299. border-color: #ddd;
  300. }
  301. #menubar .menu .options .option {
  302. color: #666;
  303. background-color: transparent;
  304. padding: 5px 10px;
  305. margin: 0 !important;
  306. }
  307. #menubar .menu .options .option:hover {
  308. color: #fff;
  309. background-color: #08f;
  310. }
  311. #menubar .menu .options .option:active {
  312. color: #666;
  313. background: transparent;
  314. }
  315. #menubar .menu .options .inactive {
  316. color: #bbb;
  317. background-color: transparent;
  318. padding: 5px 10px;
  319. margin: 0 !important;
  320. }
  321. #sidebar {
  322. position: absolute;
  323. right: 0;
  324. top: 32px;
  325. bottom: 0;
  326. width: 300px;
  327. background: #eee;
  328. overflow: auto;
  329. }
  330. #sidebar .Panel {
  331. color: #888;
  332. padding: 10px;
  333. border-top: 1px solid #ccc;
  334. }
  335. #sidebar .Panel.collapsed {
  336. margin-bottom: 0;
  337. }
  338. #sidebar .Row {
  339. display: flex;
  340. align-items: center;
  341. min-height: 24px;
  342. margin-bottom: 10px;
  343. }
  344. #tabs {
  345. background-color: #ddd;
  346. border-top: 1px solid #ccc;
  347. }
  348. #tabs span {
  349. color: #aaa;
  350. border-right: 1px solid #ccc;
  351. padding: 10px;
  352. }
  353. #tabs span.selected {
  354. color: #888;
  355. background-color: #eee;
  356. }
  357. #toolbar {
  358. position: absolute;
  359. left: 10px;
  360. top: 42px;
  361. width: 32px;
  362. background: #eee;
  363. text-align: center;
  364. }
  365. #toolbar button, #toolbar input {
  366. height: 32px;
  367. }
  368. #toolbar button img {
  369. width: 16px;
  370. opacity: 0.5;
  371. }
  372. .Outliner {
  373. color: #444;
  374. background-color: #fff;
  375. padding: 0;
  376. width: 100%;
  377. height: 140px;
  378. font-size: 12px;
  379. cursor: default;
  380. overflow: auto;
  381. resize: vertical;
  382. outline: none !important;
  383. }
  384. .Outliner .option {
  385. padding: 4px;
  386. color: #666;
  387. white-space: nowrap;
  388. }
  389. .Outliner .option:hover {
  390. background-color: rgba(0,0,0,0.02);
  391. }
  392. .Outliner .option.active {
  393. background-color: rgba(0,0,0,0.04);
  394. }
  395. .TabbedPanel .Tabs {
  396. background-color: #ddd;
  397. border-top: 1px solid #ccc;
  398. }
  399. .TabbedPanel .Tab {
  400. color: #aaa;
  401. border-right: 1px solid #ccc;
  402. }
  403. .TabbedPanel .Tab.selected {
  404. color: #888;
  405. background-color: #eee;
  406. }
  407. .Listbox {
  408. color: #444;
  409. background-color: #fff;
  410. }
  411. .Panel {
  412. color: #888;
  413. }
  414. /* */
  415. @media all and ( max-width: 600px ) {
  416. #resizer {
  417. display: none;
  418. }
  419. #menubar .menu .options {
  420. max-height: calc(100% - 372px);
  421. }
  422. #menubar .menu.right {
  423. display: none;
  424. }
  425. #viewport {
  426. left: 0;
  427. right: 0;
  428. top: 32px;
  429. height: calc(100% - 352px);
  430. }
  431. #script {
  432. left: 0;
  433. right: 0;
  434. top: 32px;
  435. height: calc(100% - 352px);
  436. }
  437. #player {
  438. left: 0;
  439. right: 0;
  440. top: 32px;
  441. height: calc(100% - 352px);
  442. }
  443. #sidebar {
  444. left: 0;
  445. width: 100%;
  446. top: calc(100% - 320px);
  447. bottom: 0;
  448. }
  449. }
  450. /* DARK MODE */
  451. @media ( prefers-color-scheme: dark ) {
  452. button {
  453. color: #aaa;
  454. background-color: #222;
  455. }
  456. button:hover {
  457. color: #ccc;
  458. background-color: #444;
  459. }
  460. button.selected {
  461. color: #fff;
  462. background-color: #08f;
  463. }
  464. input, textarea {
  465. background-color: #222;
  466. border: 1px solid transparent;
  467. color: #888;
  468. }
  469. select {
  470. color: #aaa;
  471. background-color: #222;
  472. }
  473. select:hover {
  474. color: #ccc;
  475. background-color: #444;
  476. }
  477. /* UI */
  478. #menubar {
  479. background: #111;
  480. }
  481. #menubar .menu .options {
  482. background: #111;
  483. }
  484. #menubar .menu .options hr {
  485. border-color: #222;
  486. }
  487. #menubar .menu .options .option {
  488. color: #888;
  489. }
  490. #menubar .menu .options .inactive {
  491. color: #444;
  492. }
  493. #sidebar {
  494. background-color: #111;
  495. }
  496. #sidebar .Panel {
  497. border-top: 1px solid #222;
  498. }
  499. #sidebar .Panel.Material canvas {
  500. border: solid 1px #5A5A5A;
  501. }
  502. #tabs {
  503. background-color: #1b1b1b;
  504. border-top: 1px solid #222;
  505. }
  506. #tabs span {
  507. color: #555;
  508. border-right: 1px solid #222;
  509. }
  510. #tabs span.selected {
  511. background-color: #111;
  512. }
  513. #toolbar {
  514. background-color: #111;
  515. }
  516. #toolbar img {
  517. filter: invert(1);
  518. }
  519. .Outliner {
  520. color: #888;
  521. background: #222;
  522. }
  523. .Outliner .option:hover {
  524. background-color: rgba(21,60,94,0.5);
  525. }
  526. .Outliner .option.active {
  527. background-color: rgba(21,60,94,1);
  528. }
  529. .TabbedPanel .Tabs {
  530. background-color: #1b1b1b;
  531. border-top: 1px solid #222;
  532. }
  533. .TabbedPanel .Tab {
  534. color: #555;
  535. border-right: 1px solid #222;
  536. }
  537. .TabbedPanel .Tab.selected {
  538. color: #888;
  539. background-color: #111;
  540. }
  541. .Listbox {
  542. color: #888;
  543. background: #222;
  544. }
  545. .Listbox .ListboxItem:hover {
  546. background-color: rgba(21,60,94,0.5);
  547. }
  548. .Listbox .ListboxItem.active {
  549. background-color: rgba(21,60,94,1);
  550. }
  551. }
  552. /* Temporary Chrome fix (#24794) */
  553. [draggable="true"] {
  554. transform: translate(0, 0);
  555. z-index: 0;
  556. }