﻿#editing, #highlighting {
    /* Both elements need the same text and space styling so they are directly on top of each other */
    margin: 10px;
    padding: 10px;
    border: 0;
    border-color: transparent !important;
    width: 350px;
    height: 85%;
}

#edityaml, #highlighting-yaml, #highlighting-js, #highlighting-js1 {
    /* Both elements need the same text and space styling so they are directly on top of each other */
    margin: 10px;
    padding: 10px;
    border: 0;
    border-color: transparent !important;
    width: 62%;
    height: 250px;
}

#highlighting-content {
    /* Both elements need the same text and space styling so they are directly on top of each other */
    margin: 0px !important;
    padding: 0px !important;
    border: 0;
}

    #editing, #highlighting, #highlighting * {
        /* Also add text styles to highlighing tokens */
        font-size: 10pt;
        font-family: monospace;
        line-height: 1.5;
        tab-size: 2;
    }

#edityaml, #highlighting-yaml, #highlighting-js, #highlighting-js1, #highlighting * {
    /* Also add text styles to highlighing tokens */
    font-size: 10pt;
    font-family: monospace;
    line-height: 1.5;
    tab-size: 2;
}

#editing, #editj1, #edityaml, #editjs1, #highlighting-yaml, #highlighting-js, #highlighting-js1, #highlighting {
    /* In the same place */
    position: absolute;
}


/* Move the textarea in front of the result */

#editing {
    z-index: 1;
}

#highlighting {
    z-index: 0;
}

#edityaml {
    z-index: 1;
}

#highlighting-yaml {
    z-index: 0;
}

#editjs {
    z-index: 1;
}

#highlighting-js {
    z-index: 0;
}
#editjs1 {
    z-index: 1;
}

#highlighting-js1 {
    z-index: 0;
}

/* Make textarea almost completely transparent */

#editing {
    color: transparent;
    background: transparent;
    caret-color: white; /* Or choose your favourite color */
}

#edityaml {
    color: transparent;
    background: transparent;
    caret-color: white; /* Or choose your favourite color */
}


#editjs {
    color: transparent;
    background: transparent;
    caret-color: white; /* Or choose your favourite color */
}
#editjs1 {
    color: transparent;
    background: transparent;
    caret-color: white; /* Or choose your favourite color */
}

/* Can be scrolled */
#editing, #highlighting {
    overflow: auto;
    white-space: pre; /* Allows textarea to scroll horizontally */
}

#edityaml, #highlighting-yaml {
    overflow: auto;
    white-space: pre; /* Allows textarea to scroll horizontally */
}

#editjs, #highlighting-js {
    overflow: auto;
    white-space: pre; /* Allows textarea to scroll horizontally */
}

#editjs1, #highlighting-js1 {
    overflow: auto;
    white-space: pre; /* Allows textarea to scroll horizontally */
}

/* No resize on textarea */
#editing {
    resize: none;
}

#ediyaml {
    resize: none;
}
#edijs {
    resize: none;
}
#edijs1 {
    resize: none;
}
/* Paragraphs; First Image */
/** {
    font-family: "Fira Code", monospace;
}*/

code {
    border-radius: 2px;
    background-color: #1e1e1e;
    color: #111;
}

code[class*="language-"],
pre[class*="language-"] {
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 1em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
    padding: .4em .8em;
    margin: .5em 0;
    overflow: auto;
    /* background: url('data:image/svg+xml;charset=utf-8,<svg%20version%3D"1.1"%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20width%3D"100"%20height%3D"100"%20fill%3D"rgba(0%2C0%2C0%2C.2)">%0D%0A<polygon%20points%3D"0%2C50%2050%2C0%200%2C0"%20%2F>%0D%0A<polygon%20points%3D"0%2C100%2050%2C100%20100%2C50%20100%2C0"%20%2F>%0D%0A<%2Fsvg>');
	background-size: 1em 1em; - WebCoder49*/
    background: #1e1e1e; /* - WebCoder49 */
}

code[class*="language-"] {
    background: #1e1e1e;
    /*color: white;*/
/*    box-shadow: -.3em 0 0 .3em black, .3em 0 0 .3em black;*/
}


.json-editor {
    flex: 1;
    display: flex;
    flex-direction: row;
    height: 280px;
}
.js-editor {
    flex: 1;
    display: flex;
    flex-direction: row;
    height: 380px;
}
.js1-editor {
    flex: 1;
    display: flex;
    flex-direction: row;
    height: 380px;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
    padding: .2em;
    border-radius: .3em;
    box-shadow: none;
    white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #aaa;
}

.token.punctuation {
    color: #999;
}

.token.namespace {
    opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
    color: #70ddf8;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
    color: #e4b45c;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.token.variable,
.token.inserted {
    color: #b9fc75;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #a655ad;
}

.token.regex,
.token.important {
    color: #e4b45c;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

.token.deleted {
    color: indianred;
}

/* Plugin styles: Diff Highlight */
pre.diff-highlight.diff-highlight > code .token.deleted:not(.prefix),
pre > code.diff-highlight.diff-highlight .token.deleted:not(.prefix) {
    background-color: rgba(255, 0, 0, .3);
    display: inline;
}

pre.diff-highlight.diff-highlight > code .token.inserted:not(.prefix),
pre > code.diff-highlight.diff-highlight .token.inserted:not(.prefix) {
    background-color: rgba(0, 255, 128, .3);
    display: inline;
}

/* End of prism.js syntax highlighting*/