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
52 lines
894 B
module.exports = [
|
|
'#wrapper {'
|
|
, ' position: absolute;'
|
|
, ' top: 50px;'
|
|
, ' bottom: 0;'
|
|
, ' left: 0;'
|
|
, ' right: 0;'
|
|
, '}'
|
|
, ''
|
|
, 'div.editor { '
|
|
, ' position: absolute;'
|
|
, ' width: 50%;'
|
|
, ' height: 50%;'
|
|
, '}'
|
|
, ''
|
|
, '#javascript-editor {'
|
|
, ' left: 0;'
|
|
, ' top: 0;'
|
|
, '}'
|
|
, ''
|
|
, '#coffee-editor {'
|
|
, ' left: 0;'
|
|
, ' bottom: 0;'
|
|
, '}'
|
|
, ''
|
|
, '#json-editor {'
|
|
, ' top: 0;'
|
|
, ' left: 50%;'
|
|
, ' bottom: 0;'
|
|
, '}'
|
|
, ''
|
|
, '#lua-editor {'
|
|
, ' left: 50%;'
|
|
, ' bottom: 0;'
|
|
, '}'
|
|
, '#xml-editor {'
|
|
, ' left: 0;'
|
|
, ' bottom: -50%;'
|
|
, '}'
|
|
, ''
|
|
, 'h1 {'
|
|
, ' position: absolute;'
|
|
, ' top: 0;'
|
|
, ' left: 0;'
|
|
, ' right: 0;'
|
|
, ' margin: auto;'
|
|
, ' background-color: #272822;'
|
|
, ' color: antiquewhite;'
|
|
, ' border: 2px solid black;'
|
|
, ' text-align: center;'
|
|
, '}'
|
|
].join('\n');
|