Switch over to more modern unix sharedmemory API (requested by fatbob)
[umurmur.git] / shm_utils / umurmurd-websocket / web / css / json.human.css
1 .jh-root, .jh-type-object, .jh-type-array, .jh-key, .jh-value, .jh-root tr{
2  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
3  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
4  box-sizing: border-box;         /* Opera/IE 8+ */
5 }
6
7 .jh-key, .jh-value{
8  margin: 0;
9  padding: 0.2em;
10 }
11
12 .jh-value{
13     border-left: 1px solid #ddd;
14 }
15
16 .jh-type-bool, .jh-type-number{
17     font-weight: bold;
18     text-align: center;
19     color: #5286BC;
20 }
21
22 .jh-type-string{
23     font-style: italic;
24     color: #839B00;
25 }
26
27 .jh-array-key{
28     font-style: italic;
29     font-size: small;
30     text-align: center;
31 }
32
33 .jh-object-key, .jh-array-key{
34     color: #444;
35     vertical-align: top;
36 }
37
38 .jh-type-object > tr:nth-child(odd), .jh-type-array > tr:nth-child(odd){
39     background-color: #f5f5f5;
40 }
41
42 .jh-type-object > tr:nth-child(even), .jh-type-array > tr:nth-child(even){
43     background-color: #fff;
44 }
45
46 .jh-type-object, .jh-type-array{
47     width: 100%;
48     border-collapse: collapse;
49 }
50
51 .jh-root{
52  border: 1px solid #ccc;
53  margin: 0.2em;
54 }
55
56 th.jh-key{
57  text-align: left;
58 }
59
60 .jh-type-object > tr, .jh-type-array > tr{
61  border: 1px solid #ddd;
62  border-bottom: none;
63 }
64
65 .jh-type-object > tr:last-child, .jh-type-array > tr:last-child{
66  border-bottom: 1px solid #ddd;
67 }
68
69 .jh-type-object > tr:hover, .jh-type-array > tr:hover{
70  border: 1px solid #F99927;
71 }
72
73 .jh-empty{
74  font-style: italic;
75  color: #999;
76  font-size: small;
77 }