jsonFormater.css 2.26 KB
@charset "utf-8";
/* CSS Document */
.jf-ObjectBrace {
    color: #85D8F9;
    font-weight: bold;
}
.jf-ArrayBrace {
    color: #568599;
    font-weight: bold;
}
.jf-PropertyName {
    color: #AFD180;
    font-weight: bold;
}
.jf-String {
    color: #8FAC6E;
}
.jf-Number {
    color: #A2604E;
}
.jf-Boolean {
    color: #E58265;
}
.jf-Null {
    color: #B56D58;
}
.jf-Comma {
    color: #89DDFF;
    font-weight: bold;
}
.jf-quotes {
    color: #89DDFF;
}
.imgToggle{
    vertical-align: middle;
    margin-top: -2px;
}
pre.jf-CodeContainer {
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    font-family: "Source Code Pro";
    background-color: #192226;
    padding: 1em;
    color: #89DDFF;
}

*, ::before, :after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.demo-btn{
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: default;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    margin-right: 16px;
    height: 27px;
    line-height: 24px;
    min-width: 54px;
    outline: 0px;
    padding: 0 8px;
    margin: 8px;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #4d90fe;
    background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
    background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
    background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
    background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
    background-image: linear-gradient(top,#4d90fe,#4787ed);
    border: 1px solid #3079ed;
    color: #fff;
}
.demo-btn:active {
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
    background: #357ae8;
    border: 1px solid #2f5bb7;
    border-top: 1px solid #2f5bb7;
}
.demo-btn:focus{
    -webkit-box-shadow: inset 0 0 0 1px #fff;
    -moz-box-shadow: inset 0 0 0 1px #fff;
    box-shadow: inset 0 0 0 1px #fff;
    border: 1px solid #fff;
    border: rgba(0,0,0,0) solid 1px;
    outline: 1px solid #4d90fe;
    outline: rgba(0,0,0,0) 0
}