jsonFormater.css
2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@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
}