You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
894 B

12 months ago
  1. module.exports = [
  2. '#wrapper {'
  3. , ' position: absolute;'
  4. , ' top: 50px;'
  5. , ' bottom: 0;'
  6. , ' left: 0;'
  7. , ' right: 0;'
  8. , '}'
  9. , ''
  10. , 'div.editor { '
  11. , ' position: absolute;'
  12. , ' width: 50%;'
  13. , ' height: 50%;'
  14. , '}'
  15. , ''
  16. , '#javascript-editor {'
  17. , ' left: 0;'
  18. , ' top: 0;'
  19. , '}'
  20. , ''
  21. , '#coffee-editor {'
  22. , ' left: 0;'
  23. , ' bottom: 0;'
  24. , '}'
  25. , ''
  26. , '#json-editor {'
  27. , ' top: 0;'
  28. , ' left: 50%;'
  29. , ' bottom: 0;'
  30. , '}'
  31. , ''
  32. , '#lua-editor {'
  33. , ' left: 50%;'
  34. , ' bottom: 0;'
  35. , '}'
  36. , '#xml-editor {'
  37. , ' left: 0;'
  38. , ' bottom: -50%;'
  39. , '}'
  40. , ''
  41. , 'h1 {'
  42. , ' position: absolute;'
  43. , ' top: 0;'
  44. , ' left: 0;'
  45. , ' right: 0;'
  46. , ' margin: auto;'
  47. , ' background-color: #272822;'
  48. , ' color: antiquewhite;'
  49. , ' border: 2px solid black;'
  50. , ' text-align: center;'
  51. , '}'
  52. ].join('\n');