-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpretty.css
executable file
·64 lines (53 loc) · 977 Bytes
/
pretty.css
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
#code{
}
.time{
outline: 1px solid #ccc;
padding: 5px;
margin: 5px;
width:90%;
color:gray;
text-align:center;
}
#json{
background-color:#eee;
width:90%;
height: 200px;
padding: 5px;
border: 1px solid #ccc;
}
#title{
background-color:#eee;
width:90%;
padding: 5px;
border: 1px solid #ccc;
}
pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; width:90%; }
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }
pre {
background-color:#eee;
overflow:auto;
}
pre code,
pre .line-number {
font:normal normal 12px/14px "Courier New",Courier,Monospace;
color:black;
display:block;
}
pre .line-number {
float:left;
margin:0 1em 0 -1em;
border-right:1px solid;
text-align:right;
}
pre .line-number span {
display:block;
padding:0 .5em 0 1em;
}
pre .cl {
display:block;
clear:both;
}