﻿/*
** Copyright (C) Chouette software group - All Rights Reserved
**
**
**
**
*/

* {
    padding: 0px;
    margin: 0px;
}

table {
    border-spacing: 0;
}

body {
    font-family: Calibri, sans-serif;
    font-size: 14px;
    font-weight: normal;
}

span {
    font-style: italic;
}

html, body {
    height: 100%;
}

a {
    text-decoration: none !important;
}

.header {
    height: 150px;
    background-image: url(../images/lightfabric.png);
    color: goldenrod;
    font-family: verdana;
    font-size: 2em;
    font-weight: bold;
}

.footer {
    height: 40px;
    background-image: url(../images/darkfabric.png);
    color: gray;
    text-align: center;
    font-family: Verdana;
    font-size: 0.7em;
    font-weight: bold;
}

    .footer a {
        color: gray;
    }

.contex {
    height: 400px;
    background-color: lightslategray;
}

.fullbox {
    width: 100%;
    height: 100%;
}

.textbox {
    color: white;
    background-color: slategray;
    resize: none;
    width: 100%;
    height: 360px;
}

.textbar {
    color: whitesmoke;
    height: 20px;
}


/* CSS attributes for JSON nodes*/

.others,
.name,
.str,
.num,
.true,
.false,
.null {
    position: relative;
    display: block;
    float: left;
    margin-left: 1px;
}

.name,
.str,
.num,
.true,
.false,
.null {
    padding: 2px;
    border-radius: 3px;
    margin-right: 2px;
}

.name {
    background-color: #EBF5FB;
}

.str {
    background-color: #89C4E7;
}

.num {
    background-color: #007FCC;
}

.true {
    background-color: #60DC00;
}

.false {
    background-color: #FF7A00;
}

.null {
    background-color: #FFE000;
}

.newLine {
    clear: both;
    float: left;
    display: block;
    position: relative;
    background-color: red;
}

.selectedNode {
    background-color: lightgrey;
}
